summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psxfile01/test.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-07-17 21:23:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-07-17 21:23:19 +0000
commit05480bb8bec1c43cf2ff6447bb34d8d901d1ebb8 (patch)
tree8b32e8dbeee7acd7934ea6ff2892cf166f53a6c3 /testsuites/psxtests/psxfile01/test.c
parent2008-07-17 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-05480bb8bec1c43cf2ff6447bb34d8d901d1ebb8.tar.bz2
2008-07-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxfile01/test.c: truncate on /dev/console now works.
Diffstat (limited to '')
-rw-r--r--testsuites/psxtests/psxfile01/test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psxfile01/test.c b/testsuites/psxtests/psxfile01/test.c
index 6ab6366210..cae6a4b03d 100644
--- a/testsuites/psxtests/psxfile01/test.c
+++ b/testsuites/psxtests/psxfile01/test.c
@@ -481,7 +481,7 @@ int main(
/* try to truncate the console and see what happens */
status = truncate( "/dev/console", 40 );
- assert(status == -1 );
+ assert( status == 0 );
puts( "truncate /tmp/j to length of 0" );
status = truncate( "/tmp/j", 0 );