about summary refs log tree commit diff stats
path: root/build_and_test_until
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-04-23 17:02:16 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-04-23 17:15:16 -0700
commit7bf9212fd47e505711cc0873d30456e3d793034d (patch)
treee6c84ac4666269b5e366ceff78dd040ac39343bc /build_and_test_until
parent991d76f32817f5515fb8db25a7d5ca2912cfe4ac (diff)
downloadmu-7bf9212fd47e505711cc0873d30456e3d793034d.tar.gz
2861 - 'maybe-convert' no longer returns address
Diffstat (limited to 'build_and_test_until')
-rwxr-xr-xbuild_and_test_until2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_and_test_until b/build_and_test_until
index fc0d7689..96eb9e43 100755
--- a/build_and_test_until
+++ b/build_and_test_until
@@ -17,7 +17,7 @@ then
   # All sorts of strange bugs ensue.
   sleep 1
   set -v  # Darwin's clang and valgrind is shit.
-  CFLAGS=${CFLAGS:-"-g -O3"} make #test
+  CFLAGS=${CFLAGS:-"-g -O3"} make test
 else
   set -v
   CXX=${CXX:-clang++} CFLAGS=${CFLAGS:-"-O3 -fsanitize=undefined -Wno-tautological-constant-out-of-range-compare"} make ${2:-valgrind}