Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 4ad6e88

Browse files
authored
Merge pull request #151 from facebookresearch/2lut-tests
filter PLDI 2LUT tests temporarily from CI
2 parents 355bcbe + b84039e commit 4ad6e88

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.jenkins/run_test.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ source /etc/lsb-release
88
# condition: if 16.04 and conda, run only python tests
99
# condition: if any and non-conda, run test.sh only
1010

11+
# TODO: modify 2LUT tests from example_MLP_model and enable on CI
12+
1113
if [[ "$DISTRIB_RELEASE" == 14.04 ]]; then
1214
echo "Running TC backend tests"
13-
./test.sh
15+
FILTER_OUT=example_MLP_model ./test.sh
16+
./build/examples/example_MLP_model --gtest_filter=-*2LUT*
1417
if [[ $(conda --version | wc -c) -ne 0 ]]; then
1518
source activate tc-env
1619
echo "Running TC PyTorch tests"
@@ -25,6 +28,7 @@ if [[ "$DISTRIB_RELEASE" == 16.04 ]]; then
2528
./test_python/run_test.sh
2629
else
2730
echo "Running TC backend tests"
28-
./test.sh
31+
FILTER_OUT=example_MLP_model ./test.sh
32+
./build/examples/example_MLP_model --gtest_filter=-*2LUT*
2933
fi
3034
fi

0 commit comments

Comments
 (0)