Fixed bug in gcc invocation; added stdlib tests

This commit is contained in:
Dmitry Boulytchev 2020-01-14 17:08:35 +03:00
parent faca5c6e0e
commit 369f80f7e8
11 changed files with 515 additions and 74 deletions

View file

@ -5,14 +5,19 @@ SHELL := /bin/bash
all:
pushd src && make && popd
pushd runtime && make && popd
pushd stdlib && make && popd
install: ;
regression:
pushd regression && ./test.sh && popd
pushd regression && make clean check && popd
pushd regression/x86only && make clean check && popd
pushd stdlib/regression && make clean check && popd
clean:
pushd src && make clean && popd
pushd runtime && make clean && popd
pushd stdlib && make clean && popd
pushd regression && make clean && popd