Rombobjörn

summaryrefslogtreecommitdiff
path: root/testsuite/inputs/configure_and_clean
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/inputs/configure_and_clean')
-rw-r--r--testsuite/inputs/configure_and_clean13
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