Skip to content

Commit

Permalink
tests/util.c : Add detection of CPU name on OpenBSD.
Browse files Browse the repository at this point in the history
  • Loading branch information
brad0 authored and evpobr committed May 11, 2024
1 parent 2165fdf commit 4858fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ get_cpu_name (void)
file = popen ("/usr/sbin/system_profiler -detailLevel full SPHardwareDataType", "r") ;
search = "Processor Name" ;
is_pipe = 1 ;
#elif defined (__FreeBSD__)
#elif defined (__FreeBSD__) || defined (__OpenBSD__)
file = popen ("sysctl -a", "r") ;
search = "hw.model" ;
is_pipe = 1 ;
Expand All @@ -188,7 +188,7 @@ get_cpu_name (void)
return name;
#endif

#if defined (__linux__) || defined (__APPLE__) || defined (__FreeBSD__)
#if defined (__linux__) || defined (__APPLE__) || defined (__FreeBSD__) || defined (__OpenBSD__)
if (search == NULL)
{ printf ("Error : search is NULL in function %s.\n", __func__) ;
return name ;
Expand Down

0 comments on commit 4858fb0

Please sign in to comment.