summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2022-06-14 00:07:34 +0800
committerKunoiSayami <[email protected]>2022-06-14 00:07:34 +0800
commitc5d52db9e4c3bda63a99958f387c29ffdad47971 (patch)
treea586c3b74c1f369daa348aea1a4d8fd9ed559678 /test.sh
parent34e95e65b783ba6b43a810432e03993ec7f9412c (diff)
fix: Fix wrong level calc
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/test.sh b/test.sh
index 8da5e7d..cc16cc8 100755
--- a/test.sh
+++ b/test.sh
@@ -2,7 +2,7 @@
mkdir test || true
pushd test > /dev/null
cmake ..
-cmake --build .
-find -type f -executable -name lock\* -exec {} 100 0 \;
+cmake --build . --parallel $(nproc)
+find -type f -executable -name lock\* -exec '{}' 100 0 \;
popd > /dev/null
rm -rf test \ No newline at end of file