Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCésar Natarén <cesar@mono-cvs.ximian.com>2004-01-26 04:43:35 +0300
committerCésar Natarén <cesar@mono-cvs.ximian.com>2004-01-26 04:43:35 +0300
commitbc727019bb6bb3910d82fd2706bffae253115931 (patch)
tree818123d9e1c8228f9882b4f873efe5cdfcb11440 /mcs/jtests
parent927fb6a4bdbf3fd9ea4fae7505fe556208e5f29e (diff)
tests for relational operators
svn path=/trunk/mcs/; revision=22482
Diffstat (limited to 'mcs/jtests')
-rw-r--r--mcs/jtests/assign-less-than-eq.js3
-rw-r--r--mcs/jtests/greater-than-eq.js3
-rw-r--r--mcs/jtests/greater-than.js3
-rw-r--r--mcs/jtests/less-than-eq.js3
-rw-r--r--mcs/jtests/less-than.js3
5 files changed, 15 insertions, 0 deletions
diff --git a/mcs/jtests/assign-less-than-eq.js b/mcs/jtests/assign-less-than-eq.js
new file mode 100644
index 00000000000..4026a6fcc0d
--- /dev/null
+++ b/mcs/jtests/assign-less-than-eq.js
@@ -0,0 +1,3 @@
+var x, y, z;
+
+z = x <= y;
diff --git a/mcs/jtests/greater-than-eq.js b/mcs/jtests/greater-than-eq.js
new file mode 100644
index 00000000000..fa8f3b27252
--- /dev/null
+++ b/mcs/jtests/greater-than-eq.js
@@ -0,0 +1,3 @@
+var x, y;
+
+x >= y;
diff --git a/mcs/jtests/greater-than.js b/mcs/jtests/greater-than.js
new file mode 100644
index 00000000000..91f9586c6bb
--- /dev/null
+++ b/mcs/jtests/greater-than.js
@@ -0,0 +1,3 @@
+var x, y;
+
+x > y;
diff --git a/mcs/jtests/less-than-eq.js b/mcs/jtests/less-than-eq.js
new file mode 100644
index 00000000000..a92f5c49d21
--- /dev/null
+++ b/mcs/jtests/less-than-eq.js
@@ -0,0 +1,3 @@
+var x, y;
+
+x <= y;
diff --git a/mcs/jtests/less-than.js b/mcs/jtests/less-than.js
new file mode 100644
index 00000000000..509c2f58801
--- /dev/null
+++ b/mcs/jtests/less-than.js
@@ -0,0 +1,3 @@
+var x, y;
+
+x < y;