summaryrefslogtreecommitdiff
path: root/tests/test_bcopy_static_write.c
diff options
context:
space:
mode:
authorjvoisin2023-07-05 15:38:56 +0200
committerjvoisin2023-07-05 15:38:56 +0200
commitb1c35c95f1384747b53cb5bdd8d5030068a39602 (patch)
tree696437aab0aee79e02dbe1f255cf3a18a4c765c5 /tests/test_bcopy_static_write.c
parenta8f6f7a21f687dd99175591ff5b3a1d708f67cbe (diff)
Add tests for bcopy
Diffstat (limited to 'tests/test_bcopy_static_write.c')
-rw-r--r--tests/test_bcopy_static_write.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test_bcopy_static_write.c b/tests/test_bcopy_static_write.c
new file mode 100644
index 0000000..47e737a
--- /dev/null
+++ b/tests/test_bcopy_static_write.c
@@ -0,0 +1,18 @@
1#define _GNU_SOURCE
2
3#include "common.h"
4
5#include <string.h>
6
7int main(int argc, char** argv) {
8 char buffer[8] = {0};
9 bcopy("1234567890", buffer, sizeof(buffer) - 1);
10 puts(buffer);
11
12 CHK_FAIL_START
13 bcopy("1234567890", buffer, sizeof(buffer) + 1);
14 CHK_FAIL_END
15
16 puts(buffer);
17 return ret;
18}