Skip to content

Commit eeb8e7f

Browse files
committed
tests: lib: timespec_util: display CONFIG_64BIT
Display whether the architecture's native word size is 64-bit or not. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
1 parent 6aa46f4 commit eeb8e7f

File tree

1 file changed

+1
-0
lines changed
  • tests/lib/timespec_util/src

1 file changed

+1
-0
lines changed

tests/lib/timespec_util/src/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ ZTEST(timeutil_api, test_timespec_to_timeout)
367367

368368
static void *setup(void)
369369
{
370+
printk("CONFIG_64BIT=%c\n", IS_ENABLED(CONFIG_64BIT) ? 'y' : 'n');
370371
printk("CONFIG_TIMEOUT_64BIT=%c\n", CONFIG_TIMEOUT_64BIT ? 'y' : 'n');
371372
printk("K_TICK_MAX: %lld\n", (long long)K_TICK_MAX);
372373
printk("minimum timeout: {%lld, %lld}\n", (long long)k_timeout_limits[0].tv_sec,

0 commit comments

Comments
 (0)