使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
登录
piumarta
/
ccmeta
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
2 次代码提交
bccc3c99b0
...
0332e0b5ca
作者
SHA1
备注
提交日期
Nathan R
0332e0b5ca
typo
4 年前
Nathan R
736d389e50
added new tests
4 年前
共有
3 个文件被更改
,包括
9 次插入
和
1 次删除
分列视图
Diff 选项
显示统计
+1
-0
Makefile
+1
-1
ccmeta.leg
+7
-0
dotest
+ 1
- 0
Makefile
查看文件
@ -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
查看文件
@ -1400,7 +1400,7 @@ declaration = @{ C_declarationBegin() }
@{ C_declarationEnd() }
|
&{ C_declarationAbort() }
)
)
declarationSpecifiers = @{ int specified= 0 } { listBegin() }
( s:storageClassSpecifier { listAppend(s) }
+ 7
- 0
dotest
查看文件
@ -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"
撰写
预览
正在加载...
取消
保存