aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-07-20 14:35:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-07-20 14:35:28 +0200
commit357172f4409c74d7a2ac963290fc70c7ae10e3b1 (patch)
tree3c857e1803d9840734fe2af59c328793fb7455e6 /tests
parent53d459271375a3fafb80f26d11ab13b00f468ef9 (diff)
Switch to bash build2 module
Diffstat (limited to 'tests')
-rw-r--r--tests/build/root.build2
-rw-r--r--tests/manifest-parser/buildfile4
-rwxr-xr-xtests/manifest-parser/driver31
-rw-r--r--tests/manifest-parser/driver.in20
l---------tests/manifest-parser/libbutl1
5 files changed, 25 insertions, 33 deletions
diff --git a/tests/build/root.build b/tests/build/root.build
index 1f267eb..f4d2a1c 100644
--- a/tests/build/root.build
+++ b/tests/build/root.build
@@ -2,6 +2,8 @@
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
+using bash
+
# Every exe{} in this subproject is by default a test.
#
exe{*}: test = true
diff --git a/tests/manifest-parser/buildfile b/tests/manifest-parser/buildfile
index 1dfe0d3..c572f3a 100644
--- a/tests/manifest-parser/buildfile
+++ b/tests/manifest-parser/buildfile
@@ -2,4 +2,6 @@
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
-exe{driver}: testscript
+import mods = libbutl.bash%bash{manifest-parser}
+
+exe{driver}: in{driver} $mods testscript
diff --git a/tests/manifest-parser/driver b/tests/manifest-parser/driver
deleted file mode 100755
index 4cbea3e..0000000
--- a/tests/manifest-parser/driver
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env bash
-
-function import ()
-{
- # Here we don't assume the errors are trapped. If all goes well, our exit
- # code is that of source (which fails if the file is not found).
- #
- local e; if ! e="$(realpath ${BASH_SOURCE[0]})"; then return 1; fi
- local d; if ! d="$(dirname "$e")"; then return 1; fi
- source "$d/$1.bash"
-}
-
-trap "{ exit 1; }" ERR
-set -o errtrace # Trap ERR in functions.
-
-import libbutl/manifest-parser
-
-# @@ parse_manifest failure ignored
-#
-# @@ what would be equivalent serialization interface? Just serialize one
-# name/value in manifest format (so explicit version).
-#
-while IFS=': ' read -r -d '' n v; do
- if [ -z "$n" ]; then
- echo "$v"
- else
- echo # Extra newline after first pair.
- echo "$n"
- echo "$v"
- fi
-done < <(parse_manifest)
diff --git a/tests/manifest-parser/driver.in b/tests/manifest-parser/driver.in
new file mode 100644
index 0000000..90dc0e3
--- /dev/null
+++ b/tests/manifest-parser/driver.in
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+# file : tests/manifest-parser/driver.in
+# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+# license : MIT; see accompanying LICENSE file
+
+trap "{ exit 1; }" ERR
+set -o errtrace # Trap ERR in functions.
+
+@import libbutl/manifest-parser@
+
+while IFS=: read -r -d '' n v; do
+ if [ -z "$n" ]; then
+ echo "$v"
+ else
+ echo # Extra newline after first pair.
+ echo "$n"
+ echo "$v"
+ fi
+done < <(butl_parse_manifest)
diff --git a/tests/manifest-parser/libbutl b/tests/manifest-parser/libbutl
deleted file mode 120000
index 6d1c4c0..0000000
--- a/tests/manifest-parser/libbutl
+++ /dev/null
@@ -1 +0,0 @@
-../../libbutl \ No newline at end of file