/*
- * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org>
+ * Copyright (c) 2015-2016 Dmitry V. Levin <ldv@altlinux.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
#ifdef __NR_ftruncate64
-#include <errno.h>
-#include <stdio.h>
-#include <unistd.h>
+# include <assert.h>
+# include <errno.h>
+# include <stdio.h>
+# include <unistd.h>
int
main(void)
{
const off_t len = 0xdefaceddeadbeef;
- int rc = ftruncate(-1, len);
- if (rc != -1 || EBADF != errno)
- return 77;
+ assert(ftruncate(-1, len) == -1);
+ if (EBADF != errno)
+ perror_msg_and_skip("ftruncate");
- printf("ftruncate64(-1, %llu) = -1 EBADF (Bad file descriptor)\n",
+ printf("ftruncate64(-1, %llu) = -1 EBADF (%m)\n",
(unsigned long long) len);
puts("+++ exited with 0 +++");
#else
-int
-main(void)
-{
- return 77;
-}
+SKIP_MAIN_UNDEFINED("__NR_ftruncate64")
#endif