diff options
author | Björn Persson <Bjorn@Rombobjörn.se> | 2014-02-01 09:58:52 +0100 |
---|---|---|
committer | Björn Persson <Bjorn@Rombobjörn.se> | 2014-02-01 09:58:52 +0100 |
commit | aedfc53e9a783b8cc1091f5a6d6bb15317616646 (patch) | |
tree | c7e37479f82b909e38b5c5b45db6e8a54033a4d9 /testsuite/inputs/configure_and_clean | |
parent | 5d900ea8ccb660d4d3bb9aaa08464fb9aae081f9 (diff) |
more testcases
Diffstat (limited to 'testsuite/inputs/configure_and_clean')
-rw-r--r-- | testsuite/inputs/configure_and_clean | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/inputs/configure_and_clean b/testsuite/inputs/configure_and_clean new file mode 100644 index 0000000..ba9b640 --- /dev/null +++ b/testsuite/inputs/configure_and_clean @@ -0,0 +1,13 @@ +expect_configuration always +common_setup +make configure bindir='${prefix}/special' +make clean +expected='bindir = ${prefix}/special' +conf=$(make show_configuration --no-print-directory) +if [ "${conf}" != "${expected}" ] ; then + echo "Expected configuration:" >&2 + echo "${expected}" >&2 + echo "Configuration found:" >&2 + echo "${conf}" >&2 + exit 1 +fi |