From d822d111bf3cd7b0d187b0238bd893b142c7dd34 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 6 Oct 2016 20:41:10 -0700 Subject: 3453 --- test_layers | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test_layers') diff --git a/test_layers b/test_layers index c0721d92..536dc9d2 100755 --- a/test_layers +++ b/test_layers @@ -29,7 +29,11 @@ do echo "=== $f" rm -rf .build mu.cc mu_bin # force full rebuild for top-level, but not subsidiary tools like tangle and cleave ./build --until $f || exit 1 + # valgrind requires Linux valgrind --leak-check=yes --num-callers=40 -q --error-exitcode=1 ./mu_bin test || exit 1 + # run on Mac OS without valgrind, and with a hacky fix for the coarser clock +#? ./mu_bin test || exit 1 +#? sleep 1 done # Layers for Mu apps without Valgrind -- cgit 1.4.1-2-gfad0 Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats
path: root/mu_instructions
blob: f93bb685be1c07d332f9eab194cc26be6de29879 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14