Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/validate_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ do
do
# Skipping dynamics examples if target is not dynamics and ex is dynamics
# or gpu is unavailable
if [ "$t" != "dynamics" ] && [[ "$ex" == *"dynamics"* ]]; then
if { [ "$t" != "dynamics" ] && [[ "$ex" == *"dynamics"* ]]; } || { [ "$t" == "dynamics" ] && [[ "$ex" != *"dynamics"* ]]; }; then
let "skipped+=1"
echo "Skipping $t target for $ex.";
echo ":white_flag: $filename: Not intended for this target. Test skipped." >> "${tmpFile}_$(echo $t | tr - _)"
Expand Down
Loading