From 9ab04b5e33cbf1cddeea8539c9ac5ef66242882a Mon Sep 17 00:00:00 2001 From: Noam Preil Date: Thu, 18 Jun 2020 04:53:59 -0400 Subject: [PATCH] facepalm --- .build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.build.yml b/.build.yml index ef43daf..0b10fe9 100644 --- a/.build.yml +++ b/.build.yml @@ -20,5 +20,6 @@ tasks: cmake -DCMAKE_BUILD_TYPE=Release .. make cd ../../kernel - 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 + mkdir bin/TI84pSE -p + valgrind -s --track-origins=yes --leak-check=full --error-exitcode=1 ../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 if [[ "$(grep ERROR\ SUMMARY log | cut -d\ -f4)" != "0" ]] ; then echo Memory error ; exit 1 ; fi