diff options
author | Adrian Kummerländer | 2014-05-13 16:30:58 +0200 |
---|---|---|
committer | Adrian Kummerländer | 2014-05-13 16:30:58 +0200 |
commit | b3bf487144a1a2978cc17d40b6d6ba1c0467fc37 (patch) | |
tree | 391b1a4a23ed5ec82ab0bd1032106f43df349e09 /test | |
parent | c4fcfa9b39d9c29ecbc3ac1c12b7e5b2beb24a6d (diff) | |
download | InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar.gz InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar.bz2 InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar.lz InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar.xz InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.tar.zst InputXSLT-b3bf487144a1a2978cc17d40b6d6ba1c0467fc37.zip |
Sorting FilesystemContext iteration results
* order of items in a directory was varying across platforms which hindered testability
* they are now temporarily copied into a std::vector instance and then sorted using std::sort
* updated "read_directory" test case reference file accordingly
Diffstat (limited to 'test')
-rw-r--r-- | test/read_directory/reference.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/read_directory/reference.xml b/test/read_directory/reference.xml index fedd903..8252569 100644 --- a/test/read_directory/reference.xml +++ b/test/read_directory/reference.xml @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> <test_case> <function_read_directory> -<item>read_directory</item> -<item>read_xml_file</item> <item>common</item> +<item>default_params</item> +<item>read_directory</item> <item>read_file</item> +<item>read_xml_file</item> <item>transform</item> -<item>default_params</item> </function_read_directory> </test_case> |