Commit 2853340 1 parent 27cd68c commit 2853340 Copy full SHA for 2853340
File tree 4 files changed +11
-5
lines changed
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 50
50
mkdir -p $targetFolder /results
51
51
52
52
# Run tests
53
- tags=" darwin"
53
+ arch=$( uname -m)
54
+ tags=" $arch ,darwin"
54
55
if [ ! -z " $e2eTagExpression " ]
55
56
then
56
57
tags=" $tags && $e2eTagExpression "
Original file line number Diff line number Diff line change 50
50
mkdir -p $targetFolder /results
51
51
52
52
# Run tests
53
- tags=" linux"
53
+ arch=$( uname -m)
54
+ tags=" $arch ,linux"
54
55
if [ ! -z " $e2eTagExpression " ]
55
56
then
56
57
tags=" $tags && $e2eTagExpression "
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ $resultsDir = "$targetFolderDir\results"
24
24
New-Item - ItemType directory - Path " $resultsDir " - Force
25
25
26
26
# Run tests
27
- $tags = " windows"
27
+ $tags = " amd64, windows"
28
28
if ($e2eTagExpression ) {
29
29
$tags = " $tags && $e2eTagExpression "
30
30
}
Original file line number Diff line number Diff line change @@ -162,7 +162,6 @@ Feature: Test configuration settings
162
162
And stdout should contain "Successfully unset configuration property 'preset'"
163
163
And "JSON" config file "crc.json" in CRC home folder does not contain key "preset"
164
164
165
-
166
165
Scenario : CRC config set and get preset property (positive cases)
167
166
When setting config property "preset" to value "<preset-value>" succeeds
168
167
And "JSON" config file "crc.json" in CRC home folder contains key "preset" with value matching "<preset-value>"
@@ -172,11 +171,16 @@ Feature: Test configuration settings
172
171
And stdout should contain "Successfully unset configuration property 'preset'"
173
172
And "JSON" config file "crc.json" in CRC home folder does not contain key "preset"
174
173
175
- @linux @darwin @windows
174
+ @x86_64
176
175
Examples : Config property preset setting positive
177
176
| preset -value |
178
177
| microshift |
179
178
| okd |
179
+
180
+ @arm64
181
+ Examples : Config property preset setting positive
182
+ | preset -value |
183
+ | microshift |
180
184
181
185
Scenario : CRC config set preset (negtive cases)
182
186
When setting config property "preset" to value "<preset-value>" fails
You can’t perform that action at this time.
0 commit comments