Skip to content

Commit 3627dce

Browse files
committed
Give permission
1 parent 5e3dcc3 commit 3627dce

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

parser.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6706,8 +6706,7 @@ xmlParseElementDecl(xmlParserCtxtPtr ctxt) {
67066706

67076707
SKIP(9);
67086708
if (!IS_BLANK_CH(CUR)) {
6709-
xmlFatalErrMsg(ctxt, XML_ERR_SPACE_REQUIRED,
6710-
"Space required after 'ELEMENT'\n");
6709+
xmlFatalErrMsg(ctxt, XML_ERR_SPACE_REQUIRED, "Space required after 'ELEMENT'\n");
67116710
}
67126711
SKIP_BLANKS;
67136712
name = xmlParseName(ctxt);

vulcan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ max-patch-number : 500
1515

1616
test-build-command: | # 테스트 빌드 커맨드 / defect4cpp 기준 meta.json의 내용이 필요
1717
rm -f Makefile
18-
./autogen.sh
18+
chmod 777 -R . ; ./autogen.sh
1919
make clean
2020
make runtest -j10
2121
coverage-build-command: | # 커버리지 빌드 커맨드 / defect4cpp 기준 meta.json의 내용이 필요(SBFL: gcov)
2222
rm -f Makefile
23-
./autogen.sh --with-coverage
23+
chmod 777 -R . ; ./autogen.sh --with-coverage
2424
make clean
2525
make runtest -j10
2626
# 테스트 type이 문제: gtest의 경우 원하는 테스트를 실행할 수 있으니 문제가 없음

0 commit comments

Comments
 (0)