Skip to content

Commit

Permalink
tests: update regex for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Meulengracht committed Jul 29, 2022
1 parent 4904813 commit 7722445
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
# get all test programs that start with gclient in
# the tests subfolder, they each end with a number, so
# make sure they are sorted
TESTS=$(find tests -name "*gclient*" -type f | sort -V)
TESTS=$(find tests -regextype posix-extended -regex '.*/(gclient.*?exe|gclient[^.]*)' | sort -V)

# get all server programs so we can test both single-threaded
# and multi-threaded versions.
SERVERS=$(find tests -name "gserver*" -type f)
SERVERS=$(find tests -regextype posix-extended -regex '.*/(gserver.*?exe|gserver[^.]*)')

# iterate servers, and then for each server we want to start
# each test program
Expand Down

0 comments on commit 7722445

Please sign in to comment.