Added userland/testbin

This commit is contained in:
Guru Prasad Srinivasa
2016-02-29 20:10:59 -05:00
parent a5963a0e31
commit d466eb7102
53 changed files with 1538 additions and 460 deletions

View File

@@ -41,6 +41,9 @@
#include <string.h>
#include <unistd.h>
#include <err.h>
#include <errno.h>
#include <test161/test161.h>
// 23 Mar 2012 : GWA : BUFFER_COUNT must be even.
@@ -55,7 +58,7 @@ main(int argc, char **argv)
{
// 23 Mar 2012 : GWA : Assume argument passing is *not* supported.
(void) argc;
(void) argv;
int i, j;
@@ -72,12 +75,12 @@ main(int argc, char **argv)
if (fh < 0) {
err(1, "create failed");
}
tprintf("Writing %d bytes.\n", BUFFER_SIZE * BUFFER_COUNT);
// 23 Mar 2012 : GWA : Do the even-numbered writes. Test read() and
// lseek(SEEK_END).
for (i = 0; i < BUFFER_COUNT / 2; i++) {
for (j = 0; j < BUFFER_SIZE; j++) {
writebuf[j] = i * 2 * j;
@@ -88,33 +91,33 @@ main(int argc, char **argv)
}
// 23 Mar 2012 : GWA : Use lseek() to skip the odd guys.
target = (i + 1) * 2 * sizeof(writebuf);
pos = lseek(fh, sizeof(writebuf), SEEK_END);
if (pos != target) {
err(1, "(even) lseek failed: %llu != %llu", pos, target);
}
}
target = 0;
pos = lseek(fh, target, SEEK_SET);
if (pos != target) {
err(1, "(reset) lseek failed: %llu != %llu", pos, target);
}
// 23 Mar 2012 : GWA : Do the odd-numbered writes. Test write() and
// lseek(SEEK_CUR).
for (i = 0; i < BUFFER_COUNT / 2; i++) {
// 23 Mar 2012 : GWA : Use lseek() to skip the even guys.
target = ((i * 2) + 1) * sizeof(writebuf);
pos = lseek(fh, sizeof(writebuf), SEEK_CUR);
if (pos != target) {
err(1, "(odd) lseek failed: %llu != %llu", pos, target);
}
for (j = 0; j < BUFFER_SIZE; j++) {
writebuf[j] = ((i * 2) + 1) * j;
}
@@ -123,10 +126,10 @@ main(int argc, char **argv)
err(1, "write failed");
}
}
// 23 Mar 2012 : GWA : Read the test data back and make sure what we wrote
// ended up where we wrote it. Tests read() and lseek(SEEK_SET).
tprintf("Verifying write.\n");
for (i = BUFFER_COUNT - 1; i >= 0; i--) {
@@ -147,21 +150,19 @@ main(int argc, char **argv)
}
// 23 Mar 2012 : GWA : Close the file.
tprintf("Closing %s\n", filename);
close(fh);
// 23 Mar 2012 : GWA : Make sure the file is actually closed.
pos = lseek(fh, (off_t) 0, SEEK_SET);
if (pos == 0) {
err(1, "seek after close succeeded");
}
// 23 Mar 2012 : GWA : FIXME : Spin until exit() works.
tprintf("Spinning in case exit() doesn't work.\n");
while (1) {};
success(TEST161_SUCCESS, SECRET, "/testbin/fileonlytest");
// Exit may not be implemented. So crash.
crash_prog();
return 0;
}