We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48b0d55 commit 34c5770Copy full SHA for 34c5770
tests/test.sh
@@ -408,5 +408,20 @@ if [ "$?" -ne "0" ]; then
408
fi
409
online_offline_cores 1
410
411
+# Below is UT part
412
+
413
+echo "Running Unit Tests"
414
415
+for test_binary in ./tests/utests/*; do
416
+ if [ -x "$test_binary" ]; then
417
+ echo "Running $test_binary"
418
+ "$test_binary"
419
+ if [ "$?" -ne "0" ]; then
420
+ echo "Error in $test_binary"
421
+ fi
422
+ else
423
+ echo "Skipping $test_binary (not executable)"
424
425
+done
426
427
popd
0 commit comments