mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
Make blub happy
This commit is contained in:
parent
e7917d3225
commit
ec50d8508e
2 changed files with 9 additions and 7 deletions
10
Makefile
10
Makefile
|
@ -49,16 +49,16 @@ qcvm: $(OBJ_X)
|
|||
gmqcc: $(OBJ_C) $(OBJ)
|
||||
$(CC) -o $@ $^ $(CFLAGS)
|
||||
|
||||
test: $(OBJ_T)
|
||||
testsuite: $(OBJ_T)
|
||||
$(CC) -o $@ $^ $(CFLAGS)
|
||||
|
||||
all: gmqcc qcvm test
|
||||
all: gmqcc qcvm testsuite
|
||||
|
||||
runtests: all
|
||||
./test
|
||||
check: all
|
||||
./testsuite
|
||||
|
||||
clean:
|
||||
rm -f *.o gmqcc qcvm test *.dat
|
||||
rm -f *.o gmqcc qcvm testsuite *.dat
|
||||
|
||||
|
||||
$(OBJ) $(OBJ_C) $(OBJ_X): gmqcc.h
|
||||
|
|
6
test.c
6
test.c
|
@ -936,10 +936,12 @@ void task_schedualize(const char *curdir) {
|
|||
* in the virtual machine.
|
||||
*/
|
||||
if (!task_execute(task_tasks[i].template)) {
|
||||
con_err("test failure: `%s` [%s]\n",
|
||||
con_err("test failure: `%s` [%s] see %s.stdout and %s.stderr\n",
|
||||
task_tasks[i].template->description,
|
||||
(task_tasks[i].template->failuremessage) ?
|
||||
task_tasks[i].template->failuremessage : "unknown"
|
||||
task_tasks[i].template->failuremessage : "unknown",
|
||||
task_tasks[i].template->tempfilename,
|
||||
task_tasks[i].template->tempfilename
|
||||
);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue