1init: { 2 open_file: { 3 path_name: "newfile3.txt", 4 create: true 5 } 6}, 7main: { 8 instruction_set: { 9 instructions: [ 10 { 11 open_file: { 12 path_name: "newfile3.txt", 13 output_fd: "test_file" 14 } 15 }, 16 { 17 resize_file: { 18 input_fd: "test_file", 19 size: 134217728 20 } 21 }, 22 { 23 write_file: { 24 input_fd: "test_file", 25 fsync: true 26 } 27 }, 28 { 29 close_file: { 30 input_fd: "test_file" 31 } 32 } 33 ] 34 } 35}, 36clean_up: { 37 delete_file: { 38 path_name: "newfile3.txt" 39 } 40}, 41global {} 42