mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-03 13:27:28 -08:00
* EAPI 8 * Drop test restriction, patch tests to exit correctly on failure reflecting the result, and wire up src_test accordingly * Drop "commented out" jer_src_compile Signed-off-by: Sam James <sam@gentoo.org>
13 lines
314 B
Diff
13 lines
314 B
Diff
--- a/test/run-tests.sh
|
|
+++ b/test/run-tests.sh
|
|
@@ -12,7 +12,9 @@ else
|
|
diff test1-result.trace test1-correct.be.trace &> /dev/null
|
|
if test $? -eq 0; then
|
|
echo "passed."
|
|
+ exit 0
|
|
else
|
|
echo "FAILED."
|
|
+ exit 1
|
|
fi
|
|
fi
|