We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f39131 commit 4c0f872Copy full SHA for 4c0f872
test/library/standard/Debugger/breakOnHalt.skipif
@@ -1,21 +1,14 @@
1
#!/usr/bin/env bash
2
3
4
-if command -v gdb >/dev/null ; then
5
- ;
6
-else
7
- echo "True"
8
- exit 0
9
-fi
10
-
11
-if command -v lldb >/dev/null ; then
12
13
14
15
- exit 0`
+if ! command -v gdb >/dev/null ; then
+ if ! command -v lldb /dev/null ; then
+ echo "True"
+ exit 0
+ fi
16
fi
17
18
-if [ "$CHPL_HOME" != "none" ]; then
+if [[ "$($CHPL_HOME/util/chplenv/chpl_comm.py)" != "none" ]]; then
19
echo "True"
20
exit 0
21
0 commit comments