├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_old.md ├── checkers ├── .gitignore ├── acmp.cpp ├── caseicmp.cpp ├── casencmp.cpp ├── casewcmp.cpp ├── dcmp.cpp ├── fcmp.cpp ├── hcmp.cpp ├── icmp.cpp ├── lcmp.cpp ├── ncmp.cpp ├── nyesno.cpp ├── pointscmp.cpp ├── pointsinfo.cpp ├── rcmp.cpp ├── rcmp4.cpp ├── rcmp6.cpp ├── rcmp9.cpp ├── rncmp.cpp ├── uncmp.cpp ├── wcmp.cpp └── yesno.cpp ├── docs └── read.me ├── generators ├── bgen.cpp ├── gen-array-with-opt.cpp ├── gen-bipartite-graph.cpp ├── gen-rooted-tree-graph.cpp ├── gen-tree-graph.cpp ├── gs.cpp ├── igen.cpp ├── iwgen.cpp ├── multigen.cpp ├── sgen.cpp └── swgen.cpp ├── interactors └── interactor-a-plus-b.cpp ├── read.me ├── testlib.h ├── tests ├── README.md ├── docker │ ├── clang-11 │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh │ ├── clang-3.5 │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh │ ├── clang-7 │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh │ ├── clang-latest │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh │ ├── gcc-7 │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh │ └── gcc-latest │ │ ├── Dockerfile │ │ ├── build.bat │ │ ├── run.bat │ │ └── startup.sh ├── file-runner.py ├── lib │ └── testlib.h ├── run.sh ├── scripts │ ├── compile │ └── test-ref ├── src │ └── tester-lcmp.cpp ├── t.bat ├── t.sh ├── test-000_compile-all-cpp │ └── run.sh ├── test-001_run-sval-case-nval │ ├── files │ │ ├── unix │ │ │ ├── case-nval │ │ │ │ ├── input.01 │ │ │ │ ├── input.02 │ │ │ │ ├── input.03 │ │ │ │ ├── input.04 │ │ │ │ ├── input.05 │ │ │ │ └── input.06 │ │ │ ├── case-string-zb │ │ │ │ └── input.01 │ │ │ └── sval │ │ │ │ ├── input.01 │ │ │ │ ├── input.02 │ │ │ │ ├── input.03 │ │ │ │ ├── input.04 │ │ │ │ ├── input.05 │ │ │ │ ├── input.06 │ │ │ │ ├── input.07 │ │ │ │ ├── input.08 │ │ │ │ ├── input.09 │ │ │ │ └── input.10 │ │ └── win │ │ │ ├── case-nval │ │ │ ├── input.01 │ │ │ ├── input.02 │ │ │ ├── input.03 │ │ │ ├── input.04 │ │ │ ├── input.05 │ │ │ └── input.06 │ │ │ ├── case-string-zb │ │ │ └── input.01 │ │ │ └── sval │ │ │ ├── input.01 │ │ │ ├── input.02 │ │ │ ├── input.03 │ │ │ ├── input.04 │ │ │ ├── input.05 │ │ │ ├── input.06 │ │ │ ├── input.07 │ │ │ ├── input.08 │ │ │ ├── input.09 │ │ │ └── input.10 │ ├── refs │ │ ├── r-case-nval-input.01-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.01-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.01-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.01-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.01-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-nval-input.06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01-3-stderr │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01-3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01-4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-case-string-zb-input.01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.07 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.08 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-sval-input.09 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r-sval-input.10 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ ├── case-nval.cpp │ │ ├── case-string-zb.cpp │ │ └── sval.cpp ├── test-002_run-fcmp-wcmp │ ├── files │ │ ├── answer.01 │ │ ├── input.01 │ │ ├── output.01 │ │ └── output.01.bom │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r5 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r6 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ ├── fcmp.cpp │ │ └── wcmp.cpp ├── test-003_run-rnd │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ └── gen.cpp ├── test-004_use-test.h │ ├── refs │ │ └── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ ├── test.cpp │ ├── test.h │ └── tests │ │ ├── test-instream.cpp │ │ ├── test-join.cpp │ │ ├── test-opts.cpp │ │ ├── test-pattern.cpp │ │ ├── test-split.cpp │ │ ├── test-stringToLongLong.cpp │ │ ├── test-stringToUnsignedLongLong.cpp │ │ └── test-tokenize.cpp ├── test-005_no-register │ ├── refs │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ └── g.cpp ├── test-005_opts │ ├── files │ │ ├── test-auto-ensure-no-unused-opts.cpp │ │ └── test-suppress-auto-ensure-no-unused-opts.cpp │ ├── refs │ │ ├── auto-ensure-no-unused-opts │ │ │ ├── r1 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r2 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r3 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r4 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r5 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r6 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r7 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ ├── r8 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ │ └── r9 │ │ │ │ ├── exit_code │ │ │ │ ├── stderr │ │ │ │ └── stdout │ │ └── suppress-auto-ensure-no-unused-opts │ │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r3 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r4 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r5 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r6 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r7 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ ├── r8 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ │ └── r9 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ └── run.sh ├── test-006_interactors │ ├── files │ │ ├── crossrun │ │ │ ├── CrossRun.jar │ │ │ ├── CrossRun.java │ │ │ └── build-cross-run.sh │ │ ├── unix │ │ │ ├── input.01 │ │ │ └── participant.01 │ │ └── win │ │ │ ├── input.01 │ │ │ └── participant.01 │ ├── refs │ │ ├── r-interactor-a-plus-b-1-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── r-interactor-a-plus-b-1-2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r-interactor-a-plus-b-2-1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ ├── interactive-a-plus-b.cpp │ │ ├── interactive_runner.py │ │ └── interactor-a-plus-b.cpp ├── test-007_validators │ ├── files │ │ ├── unix │ │ │ ├── input.01 │ │ │ ├── input.02 │ │ │ ├── input.03 │ │ │ ├── input.04 │ │ │ ├── input.05 │ │ │ └── input.06 │ │ └── win │ │ │ ├── input.01 │ │ │ ├── input.02 │ │ │ ├── input.03 │ │ │ ├── input.04 │ │ │ ├── input.05 │ │ │ └── input.06 │ ├── refs │ │ ├── v1-01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v1-02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v1-03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v1-04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v1-05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v1-06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v2-06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v3-06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v4-01 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v4-02 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v4-03 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v4-04 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ ├── v4-05 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── v4-06 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── run.sh │ └── src │ │ ├── v1.cpp │ │ ├── v2.cpp │ │ ├── v3.cpp │ │ └── v4.cpp └── test-008_format │ ├── files │ ├── test-format-format1.cpp │ ├── test-format-format2.cpp │ └── test-format.cpp │ ├── refs │ ├── test-format-format1 │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ ├── test-format-format2 │ │ ├── r1 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ │ └── r2 │ │ │ ├── exit_code │ │ │ ├── stderr │ │ │ └── stdout │ └── test-format │ │ ├── r1 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ │ └── r2 │ │ ├── exit_code │ │ ├── stderr │ │ └── stdout │ └── run.sh └── validators ├── bipartite-graph-validator.cpp ├── case-nval.cpp ├── ival.cpp ├── nval.cpp ├── sval.cpp ├── undirected-graph-validator.cpp ├── undirected-tree-validator.cpp └── validate-using-testset-and-group.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/README.md -------------------------------------------------------------------------------- /README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/README_old.md -------------------------------------------------------------------------------- /checkers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/.gitignore -------------------------------------------------------------------------------- /checkers/acmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/acmp.cpp -------------------------------------------------------------------------------- /checkers/caseicmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/caseicmp.cpp -------------------------------------------------------------------------------- /checkers/casencmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/casencmp.cpp -------------------------------------------------------------------------------- /checkers/casewcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/casewcmp.cpp -------------------------------------------------------------------------------- /checkers/dcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/dcmp.cpp -------------------------------------------------------------------------------- /checkers/fcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/fcmp.cpp -------------------------------------------------------------------------------- /checkers/hcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/hcmp.cpp -------------------------------------------------------------------------------- /checkers/icmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/icmp.cpp -------------------------------------------------------------------------------- /checkers/lcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/lcmp.cpp -------------------------------------------------------------------------------- /checkers/ncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/ncmp.cpp -------------------------------------------------------------------------------- /checkers/nyesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/nyesno.cpp -------------------------------------------------------------------------------- /checkers/pointscmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/pointscmp.cpp -------------------------------------------------------------------------------- /checkers/pointsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/pointsinfo.cpp -------------------------------------------------------------------------------- /checkers/rcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/rcmp.cpp -------------------------------------------------------------------------------- /checkers/rcmp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/rcmp4.cpp -------------------------------------------------------------------------------- /checkers/rcmp6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/rcmp6.cpp -------------------------------------------------------------------------------- /checkers/rcmp9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/rcmp9.cpp -------------------------------------------------------------------------------- /checkers/rncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/rncmp.cpp -------------------------------------------------------------------------------- /checkers/uncmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/uncmp.cpp -------------------------------------------------------------------------------- /checkers/wcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/wcmp.cpp -------------------------------------------------------------------------------- /checkers/yesno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/checkers/yesno.cpp -------------------------------------------------------------------------------- /docs/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/docs/read.me -------------------------------------------------------------------------------- /generators/bgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/bgen.cpp -------------------------------------------------------------------------------- /generators/gen-array-with-opt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/gen-array-with-opt.cpp -------------------------------------------------------------------------------- /generators/gen-bipartite-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/gen-bipartite-graph.cpp -------------------------------------------------------------------------------- /generators/gen-rooted-tree-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/gen-rooted-tree-graph.cpp -------------------------------------------------------------------------------- /generators/gen-tree-graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/gen-tree-graph.cpp -------------------------------------------------------------------------------- /generators/gs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/gs.cpp -------------------------------------------------------------------------------- /generators/igen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/igen.cpp -------------------------------------------------------------------------------- /generators/iwgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/iwgen.cpp -------------------------------------------------------------------------------- /generators/multigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/multigen.cpp -------------------------------------------------------------------------------- /generators/sgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/sgen.cpp -------------------------------------------------------------------------------- /generators/swgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/generators/swgen.cpp -------------------------------------------------------------------------------- /interactors/interactor-a-plus-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/interactors/interactor-a-plus-b.cpp -------------------------------------------------------------------------------- /read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/read.me -------------------------------------------------------------------------------- /testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/testlib.h -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/docker/clang-11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-11/Dockerfile -------------------------------------------------------------------------------- /tests/docker/clang-11/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-11/build.bat -------------------------------------------------------------------------------- /tests/docker/clang-11/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-11/run.bat -------------------------------------------------------------------------------- /tests/docker/clang-11/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-11/startup.sh -------------------------------------------------------------------------------- /tests/docker/clang-3.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-3.5/Dockerfile -------------------------------------------------------------------------------- /tests/docker/clang-3.5/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-3.5/build.bat -------------------------------------------------------------------------------- /tests/docker/clang-3.5/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-3.5/run.bat -------------------------------------------------------------------------------- /tests/docker/clang-3.5/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-3.5/startup.sh -------------------------------------------------------------------------------- /tests/docker/clang-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-7/Dockerfile -------------------------------------------------------------------------------- /tests/docker/clang-7/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-7/build.bat -------------------------------------------------------------------------------- /tests/docker/clang-7/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-7/run.bat -------------------------------------------------------------------------------- /tests/docker/clang-7/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-7/startup.sh -------------------------------------------------------------------------------- /tests/docker/clang-latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-latest/Dockerfile -------------------------------------------------------------------------------- /tests/docker/clang-latest/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-latest/build.bat -------------------------------------------------------------------------------- /tests/docker/clang-latest/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-latest/run.bat -------------------------------------------------------------------------------- /tests/docker/clang-latest/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/clang-latest/startup.sh -------------------------------------------------------------------------------- /tests/docker/gcc-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-7/Dockerfile -------------------------------------------------------------------------------- /tests/docker/gcc-7/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-7/build.bat -------------------------------------------------------------------------------- /tests/docker/gcc-7/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-7/run.bat -------------------------------------------------------------------------------- /tests/docker/gcc-7/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-7/startup.sh -------------------------------------------------------------------------------- /tests/docker/gcc-latest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-latest/Dockerfile -------------------------------------------------------------------------------- /tests/docker/gcc-latest/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-latest/build.bat -------------------------------------------------------------------------------- /tests/docker/gcc-latest/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-latest/run.bat -------------------------------------------------------------------------------- /tests/docker/gcc-latest/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/docker/gcc-latest/startup.sh -------------------------------------------------------------------------------- /tests/file-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/file-runner.py -------------------------------------------------------------------------------- /tests/lib/testlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/lib/testlib.h -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/scripts/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/scripts/compile -------------------------------------------------------------------------------- /tests/scripts/test-ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/scripts/test-ref -------------------------------------------------------------------------------- /tests/src/tester-lcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/src/tester-lcmp.cpp -------------------------------------------------------------------------------- /tests/t.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/t.bat -------------------------------------------------------------------------------- /tests/t.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/t.sh -------------------------------------------------------------------------------- /tests/test-000_compile-all-cpp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-000_compile-all-cpp/run.sh -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.01: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 1 4 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-nval/input.02 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-nval/input.03 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-nval/input.04 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-nval/input.05 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-nval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-nval/input.06 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/case-string-zb/input.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/case-string-zb/input.01 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.02: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.03: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.04: -------------------------------------------------------------------------------- 1 | abacabazwetyuiop 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.05 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.06 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.07 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.08 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.09 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/unix/sval/input.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/unix/sval/input.10 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.01 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.02 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.03 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.04 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.05 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-nval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-nval/input.06 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/case-string-zb/input.01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/case-string-zb/input.01 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.01: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.02: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.03: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.04: -------------------------------------------------------------------------------- 1 | abacabazwetyuiop 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.05 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.06 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.07 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.08 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.09 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/files/win/sval/input.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/files/win/sval/input.10 -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-1/stdout: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3-stderr/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-1/stdout -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3-stderr/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-1/stdout -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-2/stdout: -------------------------------------------------------------------------------- 1 | 5 2 | 3 1 4 2 5 3 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3-stderr/stderr: -------------------------------------------------------------------------------- 1 | 11 2 | 1 2 3 4 5 6 7 8 9 10 11 3 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-3/stdout: -------------------------------------------------------------------------------- 1 | 11 2 | 1 2 3 4 5 6 7 8 9 10 11 3 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3-stderr/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3-stderr/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-4/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-4/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-4/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3-stderr/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3-stderr/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-4/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-4/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-4/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3-stderr/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3-stderr/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-4/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-4/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-4/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-nval-input.06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-1/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-1/stdout -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-2/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-2/stdout -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3-stderr/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3-stderr/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3-stderr/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3-stderr/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-3/stdout -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01-4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-case-string-zb-input.01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.01/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-sval-input.01/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.02/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-sval-input.02/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.03/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.03/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.04/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.05/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.05/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.06/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-sval-input.06/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.07/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.07/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-sval-input.07/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.07/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.08/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.08/stderr: -------------------------------------------------------------------------------- 1 | FAIL Expected EOLN (stdin, line 1) 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.08/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.09/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.09/stderr: -------------------------------------------------------------------------------- 1 | FAIL Expected EOLN (stdin, line 1) 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.09/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.10/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.10/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/refs/r-sval-input.10/stderr -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/refs/r-sval-input.10/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/run.sh -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/src/case-nval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/src/case-nval.cpp -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/src/case-string-zb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/src/case-string-zb.cpp -------------------------------------------------------------------------------- /tests/test-001_run-sval-case-nval/src/sval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-001_run-sval-case-nval/src/sval.cpp -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/files/answer.01: -------------------------------------------------------------------------------- 1 | abc 01 \%test!$ 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/files/input.01: -------------------------------------------------------------------------------- 1 | 1 2 3 4 5 6 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/files/output.01: -------------------------------------------------------------------------------- 1 | abc 01 \%test!$ 2 | 3 | me 4 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/files/output.01.bom: -------------------------------------------------------------------------------- 1 | abc 01 \%test!$ 2 | 3 | me 4 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/refs/r1/stderr -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r2/stderr: -------------------------------------------------------------------------------- 1 | ok 4 tokens 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r3/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/refs/r3/stderr -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r3/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r4/exit_code: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r4/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/refs/r4/stderr -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r4/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r5/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r5/stderr: -------------------------------------------------------------------------------- 1 | ok 3 lines 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r5/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r6/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r6/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/refs/r6/stderr -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/refs/r6/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/run.sh -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/src/fcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/src/fcmp.cpp -------------------------------------------------------------------------------- /tests/test-002_run-fcmp-wcmp/src/wcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-002_run-fcmp-wcmp/src/wcmp.cpp -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-003_run-rnd/refs/r1/stdout -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-003_run-rnd/refs/r2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-003_run-rnd/refs/r2/stdout -------------------------------------------------------------------------------- /tests/test-003_run-rnd/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-003_run-rnd/run.sh -------------------------------------------------------------------------------- /tests/test-003_run-rnd/src/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-003_run-rnd/src/gen.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-004_use-test.h/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/refs/r1/stderr -------------------------------------------------------------------------------- /tests/test-004_use-test.h/refs/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/refs/r1/stdout -------------------------------------------------------------------------------- /tests/test-004_use-test.h/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/run.sh -------------------------------------------------------------------------------- /tests/test-004_use-test.h/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/test.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/test.h -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-instream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-instream.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-join.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-join.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-opts.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-pattern.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-split.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-stringToLongLong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-stringToLongLong.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-stringToUnsignedLongLong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-stringToUnsignedLongLong.cpp -------------------------------------------------------------------------------- /tests/test-004_use-test.h/tests/test-tokenize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-004_use-test.h/tests/test-tokenize.cpp -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r1/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_no-register/refs/r1/stderr -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r1/stdout: -------------------------------------------------------------------------------- 1 | 10 2 | 3 7 10 1 9 5 4 8 6 2 3 | -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r2/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_no-register/refs/r2/stderr -------------------------------------------------------------------------------- /tests/test-005_no-register/refs/r2/stdout: -------------------------------------------------------------------------------- 1 | 10 2 | 3 7 10 1 9 5 4 8 6 2 3 | -------------------------------------------------------------------------------- /tests/test-005_no-register/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_no-register/run.sh -------------------------------------------------------------------------------- /tests/test-005_no-register/src/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_no-register/src/g.cpp -------------------------------------------------------------------------------- /tests/test-005_opts/files/test-auto-ensure-no-unused-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/files/test-auto-ensure-no-unused-opts.cpp -------------------------------------------------------------------------------- /tests/test-005_opts/files/test-suppress-auto-ensure-no-unused-opts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/files/test-suppress-auto-ensure-no-unused-opts.cpp -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'test-count' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'sum-n' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'min-val' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r3/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'max-val' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r4/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'min-length' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r5/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unused key 'bias-value' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r6/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r7/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r8/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/auto-ensure-no-unused-opts/r9/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'test-count' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r1/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/stderr: -------------------------------------------------------------------------------- 1 | FAIL Opts: unknown key 'sum-n' 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r2/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r3/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r4/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r5/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r6/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r7/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r8/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/refs/suppress-auto-ensure-no-unused-opts/r9/stdout -------------------------------------------------------------------------------- /tests/test-005_opts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-005_opts/run.sh -------------------------------------------------------------------------------- /tests/test-006_interactors/files/crossrun/CrossRun.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/files/crossrun/CrossRun.jar -------------------------------------------------------------------------------- /tests/test-006_interactors/files/crossrun/CrossRun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/files/crossrun/CrossRun.java -------------------------------------------------------------------------------- /tests/test-006_interactors/files/crossrun/build-cross-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/files/crossrun/build-cross-run.sh -------------------------------------------------------------------------------- /tests/test-006_interactors/files/unix/input.01: -------------------------------------------------------------------------------- 1 | 3 2 | 1 2 3 | 3 4 4 | -1 -1 5 | -------------------------------------------------------------------------------- /tests/test-006_interactors/files/unix/participant.01: -------------------------------------------------------------------------------- 1 | 5 2 | 6 3 | 7 4 | -------------------------------------------------------------------------------- /tests/test-006_interactors/files/win/input.01: -------------------------------------------------------------------------------- 1 | 3 2 | 1 2 3 | 3 4 4 | -1 -1 5 | -------------------------------------------------------------------------------- /tests/test-006_interactors/files/win/participant.01: -------------------------------------------------------------------------------- 1 | 5 2 | 6 3 | 7 4 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-1/stderr: -------------------------------------------------------------------------------- 1 | ok 3 queries processed 2 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-1/stdout: -------------------------------------------------------------------------------- 1 | 1 2 2 | 3 4 3 | -1 -1 4 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-1-2/stdout: -------------------------------------------------------------------------------- 1 | 5 2 | 6 3 | 7 4 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-2-1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-2-1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-006_interactors/refs/r-interactor-a-plus-b-2-1/stdout: -------------------------------------------------------------------------------- 1 | 3 2 | 7 3 | -2 4 | -------------------------------------------------------------------------------- /tests/test-006_interactors/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/run.sh -------------------------------------------------------------------------------- /tests/test-006_interactors/src/interactive-a-plus-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/src/interactive-a-plus-b.cpp -------------------------------------------------------------------------------- /tests/test-006_interactors/src/interactive_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/src/interactive_runner.py -------------------------------------------------------------------------------- /tests/test-006_interactors/src/interactor-a-plus-b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-006_interactors/src/interactor-a-plus-b.cpp -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.01: -------------------------------------------------------------------------------- 1 | 1 2 | 2 0 0 3 | 1 2 4 | -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/unix/input.02 -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/unix/input.03 -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/unix/input.04 -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/unix/input.05 -------------------------------------------------------------------------------- /tests/test-007_validators/files/unix/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/unix/input.06 -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.01: -------------------------------------------------------------------------------- 1 | 1 2 | 2 0 0 3 | 1 2 4 | -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/win/input.02 -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/win/input.03 -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/win/input.04 -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/win/input.05 -------------------------------------------------------------------------------- /tests/test-007_validators/files/win/input.06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/files/win/input.06 -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v1-01/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-02/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v1-02/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-03/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-03/stderr: -------------------------------------------------------------------------------- 1 | FAIL not a permutation (duplicates) (test case 4) 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-04/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v1-04/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-05/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-05/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v1-05/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-06/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v1-06/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v1-06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v2-01/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-02/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v2-02/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-03/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-03/stderr: -------------------------------------------------------------------------------- 1 | FAIL not a permutation (duplicates) (test case 4) 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-04/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v2-04/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-05/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-05/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v2-05/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-06/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v2-06/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v2-06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v3-01/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-02/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v3-02/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-03/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-03/stderr: -------------------------------------------------------------------------------- 1 | FAIL not a permutation (duplicates) (test case 4) 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-04/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v3-04/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-05/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-05/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v3-05/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-06/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v3-06/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v3-06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-01/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-01/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v4-01/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-01/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-02/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-02/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v4-02/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-02/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-03/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-03/stderr: -------------------------------------------------------------------------------- 1 | FAIL not a permutation (duplicates) (test case 4) 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-03/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-04/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-04/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v4-04/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-04/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-05/exit_code: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-05/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v4-05/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-05/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-06/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-06/stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/refs/v4-06/stderr -------------------------------------------------------------------------------- /tests/test-007_validators/refs/v4-06/stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-007_validators/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/run.sh -------------------------------------------------------------------------------- /tests/test-007_validators/src/v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/src/v1.cpp -------------------------------------------------------------------------------- /tests/test-007_validators/src/v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/src/v2.cpp -------------------------------------------------------------------------------- /tests/test-007_validators/src/v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/src/v3.cpp -------------------------------------------------------------------------------- /tests/test-007_validators/src/v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-007_validators/src/v4.cpp -------------------------------------------------------------------------------- /tests/test-008_format/files/test-format-format1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/files/test-format-format1.cpp -------------------------------------------------------------------------------- /tests/test-008_format/files/test-format-format2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/files/test-format-format2.cpp -------------------------------------------------------------------------------- /tests/test-008_format/files/test-format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/files/test-format.cpp -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format-format1/r1/stdout -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format1/r2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format-format1/r2/stdout -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format-format2/r1/stdout -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format-format2/r2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format-format2/r2/stdout -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r1/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r1/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r1/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format/r1/stdout -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r2/exit_code: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r2/stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test-008_format/refs/test-format/r2/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/refs/test-format/r2/stdout -------------------------------------------------------------------------------- /tests/test-008_format/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/tests/test-008_format/run.sh -------------------------------------------------------------------------------- /validators/bipartite-graph-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/bipartite-graph-validator.cpp -------------------------------------------------------------------------------- /validators/case-nval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/case-nval.cpp -------------------------------------------------------------------------------- /validators/ival.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/ival.cpp -------------------------------------------------------------------------------- /validators/nval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/nval.cpp -------------------------------------------------------------------------------- /validators/sval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/sval.cpp -------------------------------------------------------------------------------- /validators/undirected-graph-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/undirected-graph-validator.cpp -------------------------------------------------------------------------------- /validators/undirected-tree-validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/undirected-tree-validator.cpp -------------------------------------------------------------------------------- /validators/validate-using-testset-and-group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Testlib-for-Lemons/HEAD/validators/validate-using-testset-and-group.cpp --------------------------------------------------------------------------------