Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Added test target to the Makefile | 0f2763df549a97364087c346f408e52ca9456c8d | lep | 2015-10-04 15:43:49 |
Allowes //+rb right before a function to ignore any returnbug errors in that function. Not throughoutly tested. | 230863ba145b74be6dc8062787c8c9c1806d1c7a | lep | 2015-10-04 14:06:30 |
Directive to suppress warnings. | f1538a555e3009cfd8cbd900347d523abdd11953 | lep | 2015-10-04 12:17:08 |
More Makefile enhancements. | 94c97f7c5f943f09ee575e96e388e9e2c947385c | lep | 2015-10-04 11:34:36 |
Makefile enhancements | 8bc7132422db4a3b90a82da4a63f7cfa9fdbe2f5 | lep | 2015-06-09 09:30:42 |
Changed canconvertreturn behaviour. | a1ba7f1d59cc40f56d0b3e4855c31b3d66019d9d | lep | 2015-04-15 16:35:52 |
Rewrote string handling to better handle newlines. | 434a8fe566783969cb69eb73b2792cd74dac71d3 | lep | 2015-02-12 15:13:54 |
Rewrote rawcode handling for somewhat better error messages. | 1e687d921b09149e244d16d7abca398c0639ad6d | lep | 2015-02-08 20:08:22 |
Undefined variables are not suggested for other undefined variables. | c5561c56dde18bbcf1d05bdec7b50804757c5ef8 | lep | 2015-02-08 15:39:10 |
Also changed gNone to gAny in else and elesif cases. | 485e75aaa14eb8ae10058305f7b75c1abd19eb82 | lep | 2015-02-06 15:20:15 |
Changed statement default return type from gNone to gAny. | 7a054ad7b62d77ae4a17ac97d913a19675dad111 | lep | 2015-02-06 15:12:31 |
Propagate returncheck through statements. | b8977b07e11f8fd335851e3a2d69cb473492f85b | lep | 2015-02-06 15:07:36 |
Small changes. Removed some unused symbols. | 83c8b2b0e6811380bddf6e92e3b2f843370d5e05 | lep | 2015-02-05 12:43:24 |
Only put locals into the initialized table. | db20d22434506716774fa4e8577f98073f17d6c2 | lep | 2015-02-04 11:57:00 |
Changed min function to min makro. | b5b6c824896935232743633ae57d060e5c6a046f | lep | 2015-02-04 11:33:14 |
Rewrote the hashtable. | 55c0f9ae7d284df88c48e7c2ac1c547cda1d802a | lep | 2015-02-04 11:24:53 |
Fixed some memory violations. | 26a99d799804d8154c4ee1aa0850cdaad909d1ae | lep | 2015-02-03 23:27:32 |
Reverted smth. | dbd5c217795cf5cd014ed7370655e62591d4d0fe | lep | 2015-02-03 22:12:49 |
Changed sprintf to snprintf. | 02d6efe2aed9186b2e6189b36a5fa50d2e0c2221 | lep | 2015-02-03 21:33:05 |
Wrapped typenode member accesses in getTypePtr. | 372c1f9da68a65de9e14dff3881e1758d5e7114b | lep | 2015-02-03 21:05:11 |
File | Lines added | Lines deleted |
---|---|---|
Makefile | 18 | 0 |
check.sh | 7 | 0 |
fail.sh | 7 | 0 |
File Makefile changed (mode: 100644) (index 6d718b1..ce46009) | |||
... | ... | pjass-git-$(VERSION).zip: pjass | |
31 | 31 | strip pjass.exe | strip pjass.exe |
32 | 32 | upx --best pjass.exe > /dev/null | upx --best pjass.exe > /dev/null |
33 | 33 | zip -q pjass-git-$(VERSION).zip pjass.exe | zip -q pjass-git-$(VERSION).zip pjass.exe |
34 | |||
35 | |||
36 | .PHONY: test test_check test_fail | ||
37 | |||
38 | SHOULD_FAIL:=$(wildcard ../pjass-tests/should-fail/*.j) | ||
39 | SHOULD_CHECK:=$(wildcard ../pjass-tests/should-check/*.j) | ||
40 | |||
41 | test: pjass test_check test_fail | ||
42 | |||
43 | test_check: | ||
44 | @for file in $(SHOULD_CHECK); do \ | ||
45 | ./check.sh "$$file" ; \ | ||
46 | done | ||
47 | |||
48 | test_fail: | ||
49 | @for file in $(SHOULD_FAIL); do \ | ||
50 | ./fail.sh "$$file" ; \ | ||
51 | done |
File check.sh added (mode: 100644) (index 0000000..38f9463) | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | ./pjass ../pjass-tests/common.j ../pjass-tests/Blizzard.j "$1" > /dev/null | ||
4 | if [[ "$?" == 1 ]]; then | ||
5 | echo "Error in file '$1', but there should be none" | ||
6 | exit 1 | ||
7 | fi |
File fail.sh added (mode: 100644) (index 0000000..8c84706) | |||
1 | #!/usr/bin/env bash | ||
2 | |||
3 | ./pjass ../pjass-tests/common.j ../pjass-tests/Blizzard.j "$1" > /dev/null | ||
4 | if [[ "$?" == 0 ]]; then | ||
5 | echo "No error in file '$1', but there should be some" | ||
6 | exit 1 | ||
7 | fi |