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.
2 parents 1e38a64 + 5e0fa2f commit baf7450Copy full SHA for baf7450
build_failed.sh
@@ -0,0 +1,13 @@
1
+build(){
2
+ # 1) Configure & build (seperti biasa)
3
+cmake -S . -B build
4
+cmake --build build -j
5
+
6
+# 2) Jalankan semua test sekali dulu (buat merekam yang gagal)
7
+ctest --test-dir build --output-on-failure
8
9
+# 3) Rerun hanya test yang gagal barusan
10
+ctest --test-dir build --rerun-failed -V --output-on-failure
11
12
+}
13
+build
0 commit comments