Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CompiletimeCrashTests/run-compiletime-crash-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo -e "Running Compiletime Crash tests\n"

cd Passing
echo -e "Running Passing Compiletime Crash tests\n"
for folder in $(find . -type d -depth 1); do
for folder in $(find . -type d -mindepth 1 -maxdepth 1); do
cd "$folder" # navigate to current testing folder
echo "Building $folder"
source ./build.sh # is expected to set RETURN_CODE variable
Expand All @@ -23,7 +23,7 @@ done

cd ../Failing
echo -e "Running Failing Compiletime Crash tests\n"
for folder in $(find . -type d -depth 1); do
for folder in $(find . -type d -mindepth 1 -maxdepth 1); do
cd "$folder" # navigate to current testing folder
echo "Building $folder"export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
source ./build.sh # is expected to set RETURN_CODE variable
Expand Down
4 changes: 2 additions & 2 deletions RuntimeCrashTests/run-runtime-crash-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ echo -e "Running Runtime Crash tests\n"

cd Passing
echo -e "Running Passing Runtime Crash tests\n"
for folder in $(find . -type d -depth 1); do
for folder in $(find . -type d -mindepth 1 -maxdepth 1); do
cd "$folder" # navigate to current testing folder

echo "Building $folder"
Expand All @@ -29,7 +29,7 @@ done

cd ../Failing
echo -e "Running Failing Runtime Crash tests\n"
for folder in $(find . -type d -depth 1); do
for folder in $(find . -type d -mindepth 1 -maxdepth 1); do
cd "$folder" # navigate to current testing folder

echo "Building $folder"
Expand Down
Loading