You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kjsembed/tests/test_stdio.js

30 lines
1021 B

#!/usr/bin/env kjscmd
println( '==============================' );
println( 'Text with newline' );
System.stdout.println( 'Text with newline' );
System.stdout.print( 'There should be an OK after the colon: ' );
System.stdout.println( 'OK' );
System.stdout.println( 'stdin is readable: ' + System.stdin.isReadable() );
System.stdout.println( 'stdin is writable: ' + System.stdin.isWritable() );
System.stdout.println( 'stdout is readable: ' + System.stdout.isReadable() );
System.stdout.println( 'stdout is writable: ' + System.stdout.isWritable() );
System.stdout.println( 'stderr is readable: ' + System.stderr.isReadable() );
System.stdout.println( 'stderr is writable: ' + System.stderr.isWritable() );
System.stdout.println( 'There should be an exception now: ' );
System.stdin.println( 'INVALID' );
System.stdout.println( 'There should be another exception: ' );
System.stdout.readLine( 'INVALID' );
println( '==============================' );
System.stdout.println( dump(System.stdin) );
System.exit(0);