diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-01-30 17:59:48 -0300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-02-12 12:37:31 +1300 |
commit | a7d4185bb8cf7d4d71c07b9f1fdb42d948aa22c0 (patch) | |
tree | 18af084552cf58420483b22529c48d30b3a53356 /tests | |
parent | 30cc8f41da58b87ff575860b7cde640520829923 (diff) | |
download | samba-a7d4185bb8cf7d4d71c07b9f1fdb42d948aa22c0.tar.gz |
build: don't execute tests/summary.c
tests/summary.c will never be able to be executed when cross compiling.
Use #error and #warning directives to fail or warn accordingly when
compiling it.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Kamen Mazdrashki <kamenim@samba.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/summary.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/tests/summary.c b/tests/summary.c index 27f7d4d0619..0843ee2cc91 100644 --- a/tests/summary.c +++ b/tests/summary.c @@ -5,27 +5,23 @@ void exit(int); int main() { #if !defined(HAVE_FCNTL_LOCK) - printf("ERROR: No locking available. Running Samba would be unsafe\n"); - exit(1); +#error "ERROR: No locking available. Running Samba would be unsafe" #endif #if !(defined(HAVE_IFACE_GETIFADDRS) || defined(HAVE_IFACE_IFCONF) || defined(HAVE_IFACE_IFREQ) || defined(HAVE_IFACE_AIX)) - printf("WARNING: No automated network interface determination\n"); +#warning "WARNING: No automated network interface determination" #endif #if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX) || defined(USE_LINUX_THREAD_CREDENTIALS)) - printf("ERROR: no seteuid method available\n"); - exit(1); +#error "ERROR: no seteuid method available" #endif #if !(defined(STAT_STATVFS) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA)) - printf("ERROR: No disk free routine!\n"); - exit(1); +#error "ERROR: No disk free routine!" #endif #if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND))) - printf("ERROR: No random or srandom routine!\n"); - exit(1); +#error "ERROR: No random or srandom routine!" #endif exit(0); |