This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
ccmeta
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
2 Commits
bccc3c99b0
...
0332e0b5ca
Author
SHA1
Message
Date
Nathan R
0332e0b5ca
typo
4 years ago
Nathan R
736d389e50
added new tests
4 years ago
3 changed files
with
9 additions
and
1 deletions
Split View
Diff Options
Show Stats
+1
-0
Makefile
+1
-1
ccmeta.leg
+7
-0
dotest
+ 1
- 0
Makefile
View File
@ -13,6 +13,7 @@ test : all .FORCE
debug
:
all
.
FORCE
./
$(
MAIN
)
< debug.c > debug.out
gcc -o debug debug.c
#diff debug.out debug.c
$(MAIN)
:
$(
MAIN
)
.
c
object
.
c
buffer
.
h
+ 1
- 1
ccmeta.leg
View File
@ -1400,7 +1400,7 @@ declaration = @{ C_declarationBegin() }
@{ C_declarationEnd() }
|
&{ C_declarationAbort() }
)
)
declarationSpecifiers = @{ int specified= 0 } { listBegin() }
( s:storageClassSpecifier { listAppend(s) }
+ 7
- 0
dotest
View File
@ -26,6 +26,13 @@ for i in tests-gnu/*.c; do
cmp $i $j || die $i $j
done
for i in single-exec/*.c; do
echo $i
j="${i%.c}.out"
$run < $i > $j
cmp $i $j || die $i $j
done
for i in tests-err/*.c; do
echo $i
j="${i%.c}.out"
Write
Preview
Loading…
Cancel
Save