about summary refs log tree commit diff
path: root/testpkgs
diff options
context:
space:
mode:
Diffstat (limited to 'testpkgs')
-rwxr-xr-xtestpkgs/args/args-build.sh11
-rw-r--r--testpkgs/args/args.fix7
-rw-r--r--testpkgs/fun/fun1.fix9
-rw-r--r--testpkgs/fun/fun2.fix9
-rw-r--r--testpkgs/fun/fun3.fix9
-rw-r--r--testpkgs/infrec/infrec.fix1
-rwxr-xr-xtestpkgs/slow/slow-build.sh14
-rw-r--r--testpkgs/slow/slow.fix5
-rwxr-xr-xtestpkgs/slow2/slow-build.sh14
-rw-r--r--testpkgs/slow2/slow.fix5
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 1efcc17fedf3..000000000000
--- 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 54a13ddba858..000000000000
--- 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 c5a9e370d1e5..000000000000
--- 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 5741fa6f3b6d..000000000000
--- 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 31399c0cb79e..000000000000
--- 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 7db7c99ad917..000000000000
--- 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 a1bda1024e1c..000000000000
--- 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 5d019afbdd9c..000000000000
--- 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 4a9d7d48287d..000000000000
--- 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 52666951fdbf..000000000000
--- a/testpkgs/slow2/slow.fix
+++ /dev/null
@@ -1,5 +0,0 @@
-Package(
-  [ ("name", "slow")
-  , ("build", Relative("slow2/slow-build.sh"))
-  ]
-)