#! /usr/bin/env python3 # def st_io_test ( ): #*****************************************************************************80 # ## ST_IO_LIB_TEST tests the ST_IO library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 27 September 2018 # # Author: # # John Burkardt # import platform from r8st_header_print import r8st_header_print_test from r8st_print import r8st_print_test from r8st_print_some import r8st_print_some_test from r8st_read import r8st_read_test from r8st_sort_a import r8st_sort_a_test from r8st_transpose import r8st_transpose_test from r8st_write import r8st_write_test from sort_heap_external import sort_heap_external_test print ( '' ) print ( 'ST_IO_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Test the ST_IO library.' ) r8st_header_print_test ( ) r8st_print_test ( ) r8st_print_some_test ( ) r8st_read_test ( ) r8st_sort_a_test ( ) r8st_transpose_test ( ) r8st_write_test ( ) sort_heap_external_test ( ) # # Terminate. # print ( '' ) print ( 'ST_IO_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) st_io_test ( ) timestamp ( )