unplugged-system/test/dittosuite/example/read_random.ditto

33 lines
513 B
Plaintext

main: {
instruction_set: {
instructions: [
{
open_file: {
path_name: "newfile2.txt",
output_fd: "test_file"
}
},
{
resize_file: {
input_fd: "test_file",
size: 134217728
}
},
{
read_file: {
input_fd: "test_file",
access_order: RANDOM
}
},
{
close_file: {
input_fd: "test_file"
}
}
]
}
},
global {
absolute_path: "";
}