summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2023-02-06 22:03:39 +0100
committerMichael Brown2023-02-06 22:06:00 +0100
commit84cb7743906f88a09b7c1f5f8b56e43bb3f7709e (patch)
treef62c9a01061f450cca2311c71e380a25c70bd0d5
parent[ci] Cache downloaded packages for GitHub actions (diff)
downloadipxe-84cb7743906f88a09b7c1f5f8b56e43bb3f7709e.tar.gz
ipxe-84cb7743906f88a09b7c1f5f8b56e43bb3f7709e.tar.xz
ipxe-84cb7743906f88a09b7c1f5f8b56e43bb3f7709e.zip
[test] Include build architecture in test suite banner
The test suites for the various architectures are often run back to back, and there is currently nothing to visually distinguish one test run from another. Include the architecture name within the self-test startup banner, to aid in visual identification of test results. Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r--src/tests/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test.c b/src/tests/test.c
index 67bd4cf89..4c49d4c16 100644
--- a/src/tests/test.c
+++ b/src/tests/test.c
@@ -119,7 +119,7 @@ static int run_all_tests ( void ) {
unsigned int total = 0;
/* Run all compiled-in self-tests */
- printf ( "Starting self-tests\n" );
+ printf ( "Starting %s self-tests\n", _S2 ( ARCH ) );
for_each_table_entry ( tests, SELF_TESTS )
run_tests ( tests );