Merge branch 'mount_tests' of github.com:PX4/Firmware into mount_tests

This commit is contained in:
Lorenz Meier 2014-01-08 20:20:21 +01:00
commit f82656203a
1 changed files with 49 additions and 1 deletions

View File

@ -40,6 +40,7 @@
*/ */
#include <sys/stat.h> #include <sys/stat.h>
#include <poll.h>
#include <dirent.h> #include <dirent.h>
#include <stdio.h> #include <stdio.h>
#include <stddef.h> #include <stddef.h>
@ -53,6 +54,38 @@
#include "tests.h" #include "tests.h"
int check_user_abort();
int check_user_abort() {
/* check if user wants to abort */
char c;
struct pollfd fds;
int ret;
fds.fd = 0; /* stdin */
fds.events = POLLIN;
ret = poll(&fds, 1, 0);
if (ret > 0) {
read(0, &c, 1);
switch (c) {
case 0x03: // ctrl-c
case 0x1b: // esc
case 'c':
case 'q':
{
warnx("Test aborted.");
return OK;
/* not reached */
}
}
}
return 1;
}
int int
test_file(int argc, char *argv[]) test_file(int argc, char *argv[])
{ {
@ -108,6 +141,9 @@ test_file(int argc, char *argv[])
fsync(fd); fsync(fd);
if (!check_user_abort())
return OK;
} }
end = hrt_absolute_time(); end = hrt_absolute_time();
@ -139,6 +175,9 @@ test_file(int argc, char *argv[])
return 1; return 1;
} }
if (!check_user_abort())
return OK;
} }
/* /*
@ -149,7 +188,7 @@ test_file(int argc, char *argv[])
int ret = unlink("/fs/microsd/testfile"); int ret = unlink("/fs/microsd/testfile");
fd = open("/fs/microsd/testfile", O_TRUNC | O_WRONLY | O_CREAT); fd = open("/fs/microsd/testfile", O_TRUNC | O_WRONLY | O_CREAT);
warnx("testing aligned writes - please wait.."); warnx("testing aligned writes - please wait.. (CTRL^C to abort)");
start = hrt_absolute_time(); start = hrt_absolute_time();
for (unsigned i = 0; i < iterations; i++) { for (unsigned i = 0; i < iterations; i++) {
@ -160,6 +199,9 @@ test_file(int argc, char *argv[])
return 1; return 1;
} }
if (!check_user_abort())
return OK;
} }
fsync(fd); fsync(fd);
@ -189,6 +231,9 @@ test_file(int argc, char *argv[])
align_read_ok = false; align_read_ok = false;
break; break;
} }
if (!check_user_abort())
return OK;
} }
if (!align_read_ok) { if (!align_read_ok) {
@ -229,6 +274,9 @@ test_file(int argc, char *argv[])
if (unalign_read_err_count > 10) if (unalign_read_err_count > 10)
break; break;
} }
if (!check_user_abort())
return OK;
} }
if (!unalign_read_ok) { if (!unalign_read_ok) {