olg33 writes: > Done! This time all works just fine. :-) > > Just one more thing. I'd like to have the marking names declared in the `.flentrc` file so that I don't have to type them every time I run a test. With that in mind, I created the ~/.flentrc file and added the following lines: > > [global] > `marking_names=10=0x28;11=0x2C;13=0x34;15=0x3C;17=0x44;19=0x4C;21=0x54;23=0x5C` > > But when I run a test: > `flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 markings=11,13` > > The system returns the following error: > `flent: error: unrecognized arguments: markings=11,13` You have to repeat --test-parameter for each parameter. So try running: flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 --test-parameter markings=11,13 You can also double-check the loading of the RC file by running with -v; that should make Flent print out whether it finds the file and which values it loads from it... -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/tohojo/flent/issues/215#issuecomment-741159062