summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spcpuset01/init.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/spcpuset01/init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/sptests/spcpuset01/init.c b/testsuites/sptests/spcpuset01/init.c
index 3ed4d47d23..3dcf462722 100644
--- a/testsuites/sptests/spcpuset01/init.c
+++ b/testsuites/sptests/spcpuset01/init.c
@@ -77,7 +77,7 @@ static void test_cpu_set_case_1(size_t cpu)
/*
* Set to all zeros and verify
*/
- printf( "Exercise CPU_ZERO, CPU_SET(%zu), and CPU_ISET\n", cpu );
+ printf( "Exercise CPU_ZERO, CPU_SET(%zu), and CPU_ISSET\n", cpu );
CPU_ZERO(&set1);
CPU_SET(cpu, &set1);
@@ -99,7 +99,7 @@ static void test_cpu_clr_case_1(size_t cpu)
/*
* Set to all zeros and verify
*/
- printf( "Exercise CPU_FILL, CPU_CLR(%zu), and CPU_ISET\n", cpu );
+ printf( "Exercise CPU_FILL, CPU_CLR(%zu), and CPU_ISSET\n", cpu );
CPU_FILL(&set1);
CPU_CLR(cpu, &set1);
@@ -119,7 +119,7 @@ static void test_cpu_copy_case_1(void)
/*
* CPU_EQUAL
*/
- puts( "Exercise CPU_ZERO, CPU_COPY, and CPU_ISET" );
+ puts( "Exercise CPU_ZERO, CPU_COPY, and CPU_ISSET" );
CPU_ZERO(&set1);
CPU_FILL(&set2);