diff options
Diffstat (limited to 'testpkgs')
-rwxr-xr-x | testpkgs/args/args-build.sh | 11 | ||||
-rw-r--r-- | testpkgs/args/args.fix | 7 | ||||
-rw-r--r-- | testpkgs/fun/fun1.fix | 9 | ||||
-rw-r--r-- | testpkgs/fun/fun2.fix | 9 | ||||
-rw-r--r-- | testpkgs/fun/fun3.fix | 9 | ||||
-rw-r--r-- | testpkgs/infrec/infrec.fix | 1 | ||||
-rwxr-xr-x | testpkgs/slow/slow-build.sh | 14 | ||||
-rw-r--r-- | testpkgs/slow/slow.fix | 5 | ||||
-rwxr-xr-x | testpkgs/slow2/slow-build.sh | 14 | ||||
-rw-r--r-- | testpkgs/slow2/slow.fix | 5 |
10 files changed, 0 insertions, 84 deletions
diff --git a/testpkgs/args/args-build.sh b/testpkgs/args/args-build.sh deleted file mode 100755 index 1efcc17fe..000000000 --- a/testpkgs/args/args-build.sh +++ /dev/null @@ -1,11 +0,0 @@ -#! /bin/sh - -IFS= - -echo "printing list of args" - -for i in $@; do - echo "arg: $i" -done - -touch $out
\ No newline at end of file diff --git a/testpkgs/args/args.fix b/testpkgs/args/args.fix deleted file mode 100644 index 54a13ddba..000000000 --- a/testpkgs/args/args.fix +++ /dev/null @@ -1,7 +0,0 @@ -Package( - [ ("name", "args") - , ("build", Relative("args/args-build.sh")) - - , ("args", ["1", "2", "3", IncludeFix("slow2/slow.fix")]) - ] -) diff --git a/testpkgs/fun/fun1.fix b/testpkgs/fun/fun1.fix deleted file mode 100644 index c5a9e370d..000000000 --- a/testpkgs/fun/fun1.fix +++ /dev/null @@ -1,9 +0,0 @@ -Call( - Function(["x"], - Call( - Function(["x"], Var("x")), - [ ("x", Var("x")) ] - ) - ), - [ ("x", True) ] -)
\ No newline at end of file diff --git a/testpkgs/fun/fun2.fix b/testpkgs/fun/fun2.fix deleted file mode 100644 index 5741fa6f3..000000000 --- a/testpkgs/fun/fun2.fix +++ /dev/null @@ -1,9 +0,0 @@ -Call( - Function(["x"], - Call( - Function(["y", "z"], Var("y")), - [ ("y", Var("x")) ] - ) - ), - [ ("x", True) ] -)
\ No newline at end of file diff --git a/testpkgs/fun/fun3.fix b/testpkgs/fun/fun3.fix deleted file mode 100644 index 31399c0cb..000000000 --- a/testpkgs/fun/fun3.fix +++ /dev/null @@ -1,9 +0,0 @@ -Call( - Function(["x"], - Call( - Function(["x"], Var("x")), - [ ("x", False) ] - ) - ), - [ ("x", True) ] -)
\ No newline at end of file diff --git a/testpkgs/infrec/infrec.fix b/testpkgs/infrec/infrec.fix deleted file mode 100644 index 7db7c99ad..000000000 --- a/testpkgs/infrec/infrec.fix +++ /dev/null @@ -1 +0,0 @@ -IncludeFix("infrec/infrec.fix") diff --git a/testpkgs/slow/slow-build.sh b/testpkgs/slow/slow-build.sh deleted file mode 100755 index a1bda1024..000000000 --- a/testpkgs/slow/slow-build.sh +++ /dev/null @@ -1,14 +0,0 @@ -#! /bin/sh - -echo "builder started..." - -mkdir $out - -for i in $(seq 1 30); do - echo $i - sleep 1 -done - -echo "done" > $out/bla - -echo "builder finished" diff --git a/testpkgs/slow/slow.fix b/testpkgs/slow/slow.fix deleted file mode 100644 index 5d019afbd..000000000 --- a/testpkgs/slow/slow.fix +++ /dev/null @@ -1,5 +0,0 @@ -Package( - [ ("name", "slow") - , ("build", Relative("slow/slow-build.sh")) - ] -) diff --git a/testpkgs/slow2/slow-build.sh b/testpkgs/slow2/slow-build.sh deleted file mode 100755 index 4a9d7d482..000000000 --- a/testpkgs/slow2/slow-build.sh +++ /dev/null @@ -1,14 +0,0 @@ -#! /bin/sh - -echo "builder started..." - -for i in $(seq 1 10); do - echo $i - sleep 1 -done - -mkdir $out - -echo "done" >> $out/bla - -echo "builder finished" diff --git a/testpkgs/slow2/slow.fix b/testpkgs/slow2/slow.fix deleted file mode 100644 index 52666951f..000000000 --- a/testpkgs/slow2/slow.fix +++ /dev/null @@ -1,5 +0,0 @@ -Package( - [ ("name", "slow") - , ("build", Relative("slow2/slow-build.sh")) - ] -) |