summaryrefslogtreecommitdiff
path: root/smoke_test
diff options
context:
space:
mode:
authorBrett Holman <bpholman5@gmail.com>2021-05-19 21:07:47 -0600
committerKent Overstreet <kent.overstreet@gmail.com>2021-05-19 23:26:13 -0400
commit9c0dc7b8d42e380e15822cc00d70958f8f10e0f3 (patch)
tree6e650c081c1e80c8b442755278711a409ed81a17 /smoke_test
parent2e2d5a3f7ed4f6d4e2a45011a82386ba82cd3976 (diff)
minor fixes for clang support
Diffstat (limited to 'smoke_test')
-rwxr-xr-xsmoke_test5
1 files changed, 3 insertions, 2 deletions
diff --git a/smoke_test b/smoke_test
index 076806d8..43cfabfb 100755
--- a/smoke_test
+++ b/smoke_test
@@ -20,6 +20,7 @@
set -e
+PYTEST=pytest-3
spam=$(tempfile)
unset BCACHEFS_FUSE BCACHEFS_TEST_USE_VALGRIND D
@@ -44,7 +45,7 @@ function test() {
echo Running tests.
(
cd tests
- pytest-3 -n${JOBS}
+ ${PYTEST} -n${JOBS}
) > ${spam} 2>&1
}
@@ -53,7 +54,7 @@ function test_vg() {
(
export BCACHEFS_TEST_USE_VALGRIND=yes
cd tests
- pytest-3 -n${JOBS}
+ ${PYTEST} -n${JOBS}
) > ${spam} 2>&1
}