]> Nishi Git Mirror - gwion.git/commitdiff
:art: More testing
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 5 Dec 2019 20:39:02 +0000 (21:39 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 5 Dec 2019 20:39:02 +0000 (21:39 +0100)
tests/error/auto_fail.gw [new file with mode: 0644]
tests/tree/fork_in_fork.gw [new file with mode: 0644]

diff --git a/tests/error/auto_fail.gw b/tests/error/auto_fail.gw
new file mode 100644 (file)
index 0000000..34b657f
--- /dev/null
@@ -0,0 +1,2 @@
+#! [contains] no match found for operator
+int => auto ae @=> auto A;
diff --git a/tests/tree/fork_in_fork.gw b/tests/tree/fork_in_fork.gw
new file mode 100644 (file)
index 0000000..395710b
--- /dev/null
@@ -0,0 +1,8 @@
+fork {
+  fork {
+    <<< __func__ >>>;
+    second => now;
+  };
+  <<< __func__ >>>;
+  second => now;
+};