From 537eb30cb263cf983f7bd2897d51978a318f530c Mon Sep 17 00:00:00 2001 From: Devin Matthews Date: Tue, 9 Jul 2024 13:41:34 -0500 Subject: [PATCH] Run full "make check" for SDE tests. --- travis/do_sde.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/travis/do_sde.sh b/travis/do_sde.sh index 3c299e9b4..4f0447778 100755 --- a/travis/do_sde.sh +++ b/travis/do_sde.sh @@ -29,9 +29,7 @@ mv $SDE_DIRPATH/$SDE_TARBALL . tar xvf $SDE_TARBALL -make -j2 testsuite-bin -cp $DIST_PATH/testsuite/input.general.fast input.general -cp $DIST_PATH/testsuite/input.operations.fast input.operations +make -j2 testsuite-bin blastest-bin TMP=`ldd ./test_libblis.x | grep ld | sed 's/^.*=> //'` LD_SO=${TMP%% *} @@ -47,11 +45,13 @@ done for ARCH in penryn sandybridge haswell skx knl piledriver steamroller excavator zen; do if [ "$ARCH" = "knl" ]; then - $SDE -knl -- ./test_libblis.x > output.testsuite + TESTSUITE_WRAPPER="$SDE -knl --" else - $SDE -cpuid_in $DIST_PATH/travis/cpuid/$ARCH.def -- ./test_libblis.x > output.testsuite + TESTSUITE_WRAPPER="$SDE -cpuid_in $DIST_PATH/travis/cpuid/$ARCH.def --" fi - $DIST_PATH/testsuite/check-blistest.sh ./output.testsuite + + make TESTSUITE_WRAPPER="$TESTSUITE_WRAPPER" check + TMP=`grep "active sub-configuration" output.testsuite` CONFIG=${TMP##* } if [ "$CONFIG" != "$ARCH" ]; then