File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,18 @@ check $?
43
43
echo " Test of the unexpected output to stderr."
44
44
echo " To ensure there are no unexpected warnings for instance."
45
45
46
- jt --silent test specs fast --error-output stderr 2> stderr.txt
47
- if [ -s stderr.txt ]; then
48
- echo Extra output:
49
- cat stderr.txt
50
- exit 1
46
+ # There is linter extra output on darwin-amd64 (GR-44301)
47
+ platform=" $( uname -s) -$( uname -m) "
48
+ if [[ " $platform " == " Darwin-x86_64" ]]; then
49
+ echo ' [GR-44301] Skipping test on darwin-amd64 as it fails'
51
50
else
52
- echo No extra output
53
- rm -f stderr.txt
51
+ jt --silent test specs fast --error-output stderr 2> stderr.txt
52
+ if [ -s stderr.txt ]; then
53
+ echo Extra output:
54
+ cat stderr.txt
55
+ exit 1
56
+ else
57
+ echo No extra output
58
+ rm -f stderr.txt
59
+ fi
54
60
fi
You can’t perform that action at this time.
0 commit comments