diff --git a/python/utils/polybench.py b/python/utils/polybench.py
index df190de752b..2f1dda20fb2 100644
--- a/python/utils/polybench.py
+++ b/python/utils/polybench.py
@@ -1261,6 +1261,9 @@ def pb_flow_runner(options: PbFlowOptions):
     """Run pb-flow with the provided arguments."""
     assert os.path.isdir(options.pb_dir)
 
+    if not options.examples:
+        options.examples = POLYBENCH_EXAMPLES
+
     # Copy all the files from the source pb_dir to a target temporary directory.
     if not options.work_dir:
         options.work_dir = os.path.join(
diff --git a/scripts/build-llvm.sh b/scripts/build-llvm.sh
index d5b714ecfc2..32d00c4bb71 100755
--- a/scripts/build-llvm.sh
+++ b/scripts/build-llvm.sh
@@ -54,8 +54,3 @@ cmake ../llvm \
  
 # Run building
 cmake --build . --target all -- -j "$(nproc)"
-
-if [ "${TARGET}" == "ci" ]; then
-  # Run test
-  cmake --build . --target check-llvm -- -j "$(nproc)"
-fi