Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
0f1fff38
Commit
0f1fff38
authored
3 years ago
by
Andre Maroneze
Browse files
Options
Downloads
Patches
Plain Diff
[Libc] fix test
parent
fe4397ca
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/libc/oracle/termios.res.oracle
+42
-1
42 additions, 1 deletion
tests/libc/oracle/termios.res.oracle
tests/libc/termios.c
+1
-1
1 addition, 1 deletion
tests/libc/termios.c
with
43 additions
and
2 deletions
tests/libc/oracle/termios.res.oracle
+
42
−
1
View file @
0f1fff38
...
@@ -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}
This diff is collapsed.
Click to expand it.
tests/libc/termios.c
+
1
−
1
View file @
0f1fff38
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment