aboutsummaryrefslogtreecommitdiff
path: root/src/systemcmds
diff options
context:
space:
mode:
authorAnton Babushkin <anton.babushkin@me.com>2014-01-09 11:13:13 +0100
committerAnton Babushkin <anton.babushkin@me.com>2014-01-09 11:13:13 +0100
commit891cb3f8c2755fdc566711448f1f19a06938bd2f (patch)
treed7dfe079e006c25f30d5374fbc31843ec7e89726 /src/systemcmds
parent532c4c771e3da9d0b371101a056c29d0f417cd09 (diff)
parentf5dfc241977e5095f4821d9f325a4d702905cb04 (diff)
downloadpx4-firmware-891cb3f8c2755fdc566711448f1f19a06938bd2f.tar.gz
px4-firmware-891cb3f8c2755fdc566711448f1f19a06938bd2f.tar.bz2
px4-firmware-891cb3f8c2755fdc566711448f1f19a06938bd2f.zip
Merge branch 'checkcrc_nostart' into autostart_cleanup
Diffstat (limited to 'src/systemcmds')
-rw-r--r--src/systemcmds/tests/test_file.c50
1 files changed, 49 insertions, 1 deletions
diff --git a/src/systemcmds/tests/test_file.c b/src/systemcmds/tests/test_file.c
index 798724cf1..cdb0b0337 100644
--- a/src/systemcmds/tests/test_file.c
+++ b/src/systemcmds/tests/test_file.c
@@ -38,6 +38,7 @@
*/
#include <sys/stat.h>
+#include <poll.h>
#include <dirent.h>
#include <stdio.h>
#include <stddef.h>
@@ -51,6 +52,38 @@
#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
test_file(int argc, char *argv[])
{
@@ -108,6 +141,9 @@ test_file(int argc, char *argv[])
fsync(fd);
//perf_end(wperf);
+ if (!check_user_abort())
+ return OK;
+
}
end = hrt_absolute_time();
@@ -142,6 +178,9 @@ test_file(int argc, char *argv[])
errx(1, "ABORTING FURTHER COMPARISON DUE TO ERROR");
}
+ if (!check_user_abort())
+ return OK;
+
}
/*
@@ -152,7 +191,7 @@ test_file(int argc, char *argv[])
int ret = unlink("/fs/microsd/testfile");
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();
for (unsigned i = 0; i < iterations; i++) {
@@ -162,6 +201,9 @@ test_file(int argc, char *argv[])
err(1, "WRITE ERROR!");
}
+ if (!check_user_abort())
+ return OK;
+
}
fsync(fd);
@@ -190,6 +232,9 @@ test_file(int argc, char *argv[])
align_read_ok = false;
break;
}
+
+ if (!check_user_abort())
+ return OK;
}
if (!align_read_ok) {
@@ -228,6 +273,9 @@ test_file(int argc, char *argv[])
if (unalign_read_err_count > 10)
break;
}
+
+ if (!check_user_abort())
+ return OK;
}
if (!unalign_read_ok) {