Skip to content

Commit d0f0503

Browse files
committed
rename checkbox provider from checkbox-tdx-classic to checkbox-tdx
1 parent dd4b397 commit d0f0503

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

tests/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,51 +72,51 @@ Go to the `tests` folder.
7272

7373
```
7474
$ snapcraft
75-
$ sudo snap install ./checkbox-tdx-classic_2.0_amd64.snap --dangerous --classic
75+
$ sudo snap install ./checkbox-tdx_1.0.0_amd64.snap --dangerous --classic
7676
```
7777

7878
- Run sanity tests to check the host setup:
7979

8080
```
81-
$ checkbox-tdx-classic.test-runner-automated-host
81+
$ checkbox-tdx.test-runner-automated-host
8282
```
8383

8484
- Run guest tests:
8585

8686
```
87-
$ checkbox-tdx-classic.test-runner-automated-guest
87+
$ checkbox-tdx.test-runner-automated-guest
8888
```
8989

9090
- Run boot tests:
9191

9292
```
93-
$ checkbox-tdx-classic.test-runner-automated-boot
93+
$ checkbox-tdx.test-runner-automated-boot
9494
```
9595

9696
- Run perf tests:
9797

9898
```
99-
$ checkbox-tdx-classic.test-runner-automated-perf
99+
$ checkbox-tdx.test-runner-automated-perf
100100
```
101101

102102
- Run quote tests:
103103

104104
```
105-
$ checkbox-tdx-classic.test-runner-automated-quote
105+
$ checkbox-tdx.test-runner-automated-quote
106106
```
107107

108108
- Run stress tests:
109109

110110
```
111-
$ checkbox-tdx-classic.test-runner-automated-stress
111+
$ checkbox-tdx.test-runner-automated-stress
112112
```
113113

114114
- Run all tests:
115115

116116
Please note that the performance tests can take a long time to run.
117117

118118
```
119-
$ checkbox-tdx-classic.test-runner-automated
119+
$ checkbox-tdx.test-runner-automated
120120
```
121121

122122

tests/checkbox/bin/checkbox-cli-wrapper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# Remove temporary folder and rebuild in setup-env-and-run
4-
TMP_FOLDER=/tmp/snap/checkbox-tdx-classic
4+
TMP_FOLDER=/tmp/snap/checkbox-tdx
55
rm -rf ${TMP_FOLDER}
66

77
# wrapper around the checkbox-cli

tests/checkbox/bin/checkbox-cli-wrapper-image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if ! test -f $TDXTEST_GUEST_IMG; then
1414
fi
1515

1616
# Remove temporary folder and rebuild in setup-env-and-run
17-
TMP_FOLDER=/tmp/snap/checkbox-tdx-classic
17+
TMP_FOLDER=/tmp/snap/checkbox-tdx
1818
rm -rf ${TMP_FOLDER}
1919

2020
# wrapper around the checkbox-cli

tests/checkbox/bin/checkbox-cli-wrapper-local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# Remove temporary folder and rebuild in setup-env-and-run
4-
TMP_FOLDER=/tmp/snap/checkbox-tdx-classic
4+
TMP_FOLDER=/tmp/snap/checkbox-tdx
55
rm -rf ${TMP_FOLDER}
66

77
# wrapper around the checkbox-cli

tests/snap/hooks/configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ STRESS_S3_WAIT_DELAY=60
1818
1919
To change those values use the configure launcher.
2020
E.g.
21-
$ checkbox-kivu-classic.configure OPEN_N_SSID=my-wifi
21+
$ checkbox-tdx.configure OPEN_N_SSID=my-wifi
2222
2323
If you __really__ need to change those values using `snap set` command,
2424
you need to change CAPS to lowercase and underscores to dashes (-).
2525
2626
E.g.
27-
$ snap set checkbox-kivu-classic open-n-ssid=my-wifi
27+
$ snap set checkbox-tdx open-n-ssid=my-wifi
2828
"""
2929

3030
import os

tests/snap/snapcraft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: checkbox-tdx-classic
1+
name: checkbox-tdx
22
summary: Checkbox tests for TDX
33
description: |
44
Collection of tests for Intel TDX (Trusted Domain eXtension)
@@ -9,7 +9,7 @@ grade: stable
99
base: core22
1010

1111
# Here are the available applications of the TDX checkbox provider snap
12-
# To run : snap run checkbox-tdx-classic.<app>
12+
# To run : snap run checkbox-tdx.<app>
1313
#
1414
# checkbox-cli:
1515
# - checkbox client, can be used to talk to the checkbox daemon

0 commit comments

Comments
 (0)