aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeegan McAllister <keegan@ksplice.com>2010-12-16 11:52:59 -0500
committerJon Masters <jcm@jonmasters.org>2011-04-13 03:01:05 -0400
commit6253bd13a529813af724ca9800f9253407236e44 (patch)
tree25542ba792593e240b0bc75e3a3c0c271cbe8a9f
parent86a075a68131fc275217c40f8a06df112d3238d1 (diff)
downloadmodule-init-tools-6253bd13a529813af724ca9800f9253407236e44.tar.gz
testsuite: export TEST_ENDIAN and TEST_BITS
These environment variables were introduced in f2668710 but were not exported by tests/runtests. As a result, a lot of tests were silently failing to run. Signed-off-by: Keegan McAllister <keegan@ksplice.com>
-rwxr-xr-xtests/runtests2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runtests b/tests/runtests
index e5c8184..f1bf983 100755
--- a/tests/runtests
+++ b/tests/runtests
@@ -101,6 +101,7 @@ for e in $TEST_ENDIAN; do
esac
done
TEST_ENDIAN="$_tmp"
+export TEST_ENDIAN
: ${TEST_BITS:=32 64}
for b in $TEST_BITS; do
@@ -112,6 +113,7 @@ for b in $TEST_BITS; do
exit 1
esac
done
+export TEST_BITS
for config in --enable-zlib --disable-zlib; do
echo Building with $config...