From: Jérémie Astor Date: Thu, 5 Dec 2019 20:39:02 +0000 (+0100) Subject: :art: More testing X-Git-Tag: nightly~2070^2~3 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=5bdefbc47e1302cc8e023da18c2e934429ab28bd;p=gwion.git :art: More testing --- diff --git a/tests/error/auto_fail.gw b/tests/error/auto_fail.gw new file mode 100644 index 00000000..34b657f0 --- /dev/null +++ b/tests/error/auto_fail.gw @@ -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 index 00000000..395710bd --- /dev/null +++ b/tests/tree/fork_in_fork.gw @@ -0,0 +1,8 @@ +fork { + fork { + <<< __func__ >>>; + second => now; + }; + <<< __func__ >>>; + second => now; +};