Skip to content
Snippets Groups Projects
Commit 0f1fff38 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[Libc] fix test

parent fe4397ca
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,45 @@ ...@@ -23,6 +23,45 @@
[eva] Done for function tcgetattr [eva] Done for function tcgetattr
[eva:alarm] tests/libc/termios.c:13: Warning: [eva:alarm] tests/libc/termios.c:13: Warning:
accessing uninitialized left-value. assert \initialized(&tio.c_cflag); accessing uninitialized left-value. assert \initialized(&tio.c_cflag);
[eva] computing for function cfsetispeed <- main.
Called from tests/libc/termios.c:19.
[eva] using specification for function cfsetispeed
[eva] tests/libc/termios.c:19:
function cfsetispeed: precondition 'valid_termios_p' got status valid.
[eva] Done for function cfsetispeed
[eva] computing for function cfsetospeed <- main.
Called from tests/libc/termios.c:21.
[eva] using specification for function cfsetospeed
[eva] tests/libc/termios.c:21:
function cfsetospeed: precondition 'valid_termios_p' got status valid.
[eva] Done for function cfsetospeed
[eva] computing for function cfgetispeed <- main.
Called from tests/libc/termios.c:23.
[eva] using specification for function cfgetispeed
[eva] tests/libc/termios.c:23:
function cfgetispeed: precondition 'valid_termios_p' got status valid.
[eva] Done for function cfgetispeed
[eva] computing for function cfgetospeed <- main.
Called from tests/libc/termios.c:24.
[eva] using specification for function cfgetospeed
[eva] tests/libc/termios.c:24:
function cfgetospeed: precondition 'valid_termios_p' got status valid.
[eva] Done for function cfgetospeed
[eva] computing for function tcflush <- main.
Called from tests/libc/termios.c:25.
[eva] using specification for function tcflush
[eva] tests/libc/termios.c:25:
function tcflush: precondition 'valid_queue_selector' got status valid.
[eva] Done for function tcflush
[eva] computing for function tcsetattr <- main.
Called from tests/libc/termios.c:26.
[eva] using specification for function tcsetattr
[eva] tests/libc/termios.c:26:
function tcsetattr: precondition 'valid_termios_p' got status valid.
[eva] Done for function tcsetattr
[eva] computing for function tcsetattr <- main.
Called from tests/libc/termios.c:26.
[eva] Done for function tcsetattr
[eva] Recording results for main [eva] Recording results for main
[eva] done for function main [eva] done for function main
[eva] ====== VALUES COMPUTED ====== [eva] ====== VALUES COMPUTED ======
...@@ -31,4 +70,6 @@ ...@@ -31,4 +70,6 @@
fd ∈ [-1..1023] fd ∈ [-1..1023]
tio ∈ [--..--] or UNINITIALIZED tio ∈ [--..--] or UNINITIALIZED
res ∈ {-1; 0} res ∈ {-1; 0}
__retres ∈ {1; 8} sp1 ∈ [--..--]
sp2 ∈ [--..--]
__retres ∈ {-1; 0; 1; 8}
...@@ -10,7 +10,7 @@ int main() { ...@@ -10,7 +10,7 @@ int main() {
fd = open("/dev/ttyS1", O_RDWR); fd = open("/dev/ttyS1", O_RDWR);
int res = tcgetattr(fd, &tio); int res = tcgetattr(fd, &tio);
if (res) return 1; if (res) return 1;
if (tio.c_cflag | CS8) { if (tio.c_cflag & CS8) {
return 8; return 8;
} }
tio.c_lflag = (ECHO|ICANON|ISIG|ECHOE|ECHOK|ECHONL); tio.c_lflag = (ECHO|ICANON|ISIG|ECHOE|ECHOK|ECHONL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment