File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 - uses : msys2/setup-msys2@v2
4242 with :
4343 msystem : mingw32
44- install : make mingw-w64-i686-gcc mingw-w64-i686-sqlite3 mingw-w64-i686-openssl p7zip mingw-w64-i686-ntldd
44+ install : make mingw-w64-i686-gcc mingw-w64-i686-sqlite3 mingw-w64-i686-openssl p7zip
4545
4646 - name : configure
4747 run : ./configure --ssl --with-ext='sqlite3 win32 zlib' --disable-docs CFLAGS=-D__MINGW_USE_VC2005_COMPAT
5656 run : |
5757 cp jimsh.exe jimsh_debug.exe
5858 strip jimsh.exe
59- ntldd -R jimsh.exe | grep -i "mingw32/bin" | awk '{print $3}' | while read -r line; do [ -n "$line" ] && cp "$(cygpath -u "$line")" .; done
59+ cp "$MINGW_PREFIX/bin"/libcrypto-*.dll .
60+ cp "$MINGW_PREFIX/bin"/libgcc_s_dw2-1.dll .
61+ cp "$MINGW_PREFIX/bin"/libsqlite3-0.dll .
62+ cp "$MINGW_PREFIX/bin"/libssl-*.dll .
63+ cp "$MINGW_PREFIX/bin"/libwinpthread-1.dll .
64+ cp "$MINGW_PREFIX/bin"/zlib1.dll .
6065 7z a jimsh.zip jimsh.exe jimsh_debug.exe *.dll
6166
6267 - name : Upload artifacts
Original file line number Diff line number Diff line change @@ -274,10 +274,10 @@ test event-15.1 {vwait with script} {jim} {
274274
275275 local proc waiter {} {&x &result} {
276276 lappend result $x
277- after 50 waiter
277+ after 150 waiter
278278 }
279279
280- after 50 waiter
280+ after 150 waiter
281281 vwait done_waiter [lambda {} {&x} {
282282 # By using a lambda to capture a reference to x, we can
283283 # avoid a global variable. (done_waiter is not used)
@@ -290,7 +290,9 @@ test event-15.1 {vwait with script} {jim} {
290290 # Note that especially on VMs the waiter may run less than 5 times,
291291 # so allow a range for the length of $result.
292292 set rn [llength $result]
293- list $x [expr {$rn >= 3 && $rn <= 5}]
294- } {5 1}
293+ if {$rn < 2 || $rn > 5} {
294+ error "Expected 2-5 iterations, got $rn"
295+ }
296+ } {}
295297
296298testreport
You can’t perform that action at this time.
0 commit comments