On February 8, 2019 23:24, Jeff King wrote: > On Fri, Feb 08, 2019 at 04:42:19PM -0500, Randall S. Becker wrote: > > > t1308 has me perplexed - this is an old breakage on the NonStop > > platform, that I have just gotten around to checking with the new bash > > version we have. When running sub-test 23, the following was reported: > > > > Value not found for "foo.bar" > > test_expect_code: command exited with 1, we wanted 2 test-tool config > > configset_get_value foo.bar a-directory > > > > However, when I looked inside t/helper/test-config.c, every path > > reporting "Value not found" has a goto exit1 not exit2. It seems, from > > the code, that the test is actually incorrect and should be expecting > > 1 not 2, and that it is working properly on NonStop (but the test fails as a > result). > > We're expecting it to report an error reading the directory, not "value not > found". Which would yield code 2. > > It sounds like you might need to set FREAD_READS_DIRECTORIES in your > config.mak. Setting FREAD_READS_DIRECTORIES = UnfortunatelyYes still results in Value not found for "foo.bar" test_expect_code: command exited with 1, we wanted 2 test-tool config configset_get_value foo.bar a-directory not ok 23 - proper error on directory "files" # # echo "Error (-1) reading configuration file a-directory." >expect && # mkdir a-directory && # test_expect_code 2 test-tool config configset_get_value foo.bar a-directory 2>output && # grep "^warning:" output && # grep "^Error" output >actual && # test_cmp expect actual # I don't think that helped. While fopen can open a directory, fread does not return any data in this platform. readdir or nftw/ftw are pretty much the only options. However, the code still goes down the goto exit1 path in this situation. Perplexed, Randall