Skip to content

Commit

Permalink
test commit - keep only event test
Browse files Browse the repository at this point in the history
Run with testverbose
  • Loading branch information
msteveb committed Sep 6, 2024
1 parent f84730b commit 9e56769
Show file tree
Hide file tree
Showing 100 changed files with 15 additions and 28,438 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
run: make

- name: Run check
run: make test
run: testverbose=1 make test >test.log

- name: Check output
run: cat test.log

- name: Test bootstrap jimsh
run: ./test-bootstrap-jim
2 changes: 1 addition & 1 deletion jim-eventloop.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ int Jim_EvalObjBackground(Jim_Interp *interp, Jim_Obj *scriptObjPtr)
else {
/* Report the error to stderr. */
Jim_MakeErrorMessage(interp);
fprintf(stderr, "%s\n", Jim_String(Jim_GetResult(interp)));
fprintf(stderr, "bgerror failed - msg=%s\n", Jim_String(Jim_GetResult(interp)));
/* And reset the result */
Jim_SetResultString(interp, "", -1);
}
Expand Down
2 changes: 2 additions & 0 deletions tcltest.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,10 @@ proc test {id descr args} {
puts "ERR $descr"
if {$rc in {0 2}} {
set source [script_source $a(-body)]
puts "successful source is $source"
} else {
set source [error_source]
puts "failed source is $source"
}
puts "Expected: $expected"
puts "Got : $actual"
Expand Down
343 changes: 0 additions & 343 deletions tests/aio.test

This file was deleted.

Loading

0 comments on commit 9e56769

Please sign in to comment.