From d7b14b0a5213a60c0ec46b48c1beb4388efcebf7 Mon Sep 17 00:00:00 2001 From: Noam Preil Date: Thu, 18 Jun 2020 04:47:23 -0400 Subject: [PATCH] Okay, now it should fail for the right reason... --- .build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.build.yml b/.build.yml index c765150..ef43daf 100644 --- a/.build.yml +++ b/.build.yml @@ -20,5 +20,5 @@ tasks: cmake -DCMAKE_BUILD_TYPE=Release .. make cd ../../kernel - valgrind -s --track-origins=yes --leak-check=full scas --define TI84pSE --include "include/;bin/TI84pSE/;src/00/" --symbols bin/TI84pSE/00.sym --listing bin/TI84pSE/00.list src/00/base.asm -o bin/TI84pSE/00.bin -vv 2>&1 >log + valgrind -s --track-origins=yes --leak-check=full ../scas/build/scas --define TI84pSE --include "include/;bin/TI84pSE/;src/00/" --symbols bin/TI84pSE/00.sym --listing bin/TI84pSE/00.list src/00/base.asm -o bin/TI84pSE/00.bin -vv 2>&1 >log if [[ "$(grep ERROR\ SUMMARY log | cut -d\ -f4)" != "0" ]] ; then echo Memory error ; exit 1 ; fi