Skip to content

Commit 0ba5cc1

Browse files
committed
Merge remote-tracking branch 'origin/candidate-9.2.x' into candidate-9.4.x
2 parents 16acec7 + d065ae6 commit 0ba5cc1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

dfsclient/src/test/java/org/hpccsystems/dfs/client/DFSReadWriteTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@
6565
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
6666
public class DFSReadWriteTest extends BaseRemoteTest
6767
{
68-
private static final String[] datasets = { "~benchmark::integer::20kb", "~unit_test::all_types::thor", "~unit_test::all_types::xml", "~unit_test::all_types::json", "~unit_test::all_types::csv" };
69-
private static final int[] expectedCounts = { 1250, 5600, 10000, 10000, 10000, 10000};
68+
// Note: These datasets are generated by dfsclient/src/target/resources/generate-datasets.ecl
69+
private static final String[] datasets = { "~benchmark::integer::20kb", "~unit_test::all_types::thor", "~unit_test::all_types::json", "~unit_test::all_types::csv" };
70+
private static final int[] expectedCounts = { 1250, 100000, 100000, 100000};
7071

7172
//use until standard test is working
7273
// private static final String[] datasets = { "~benchmark::integer::20kb", "~benchmark::all_types::200kb"};//, "~unit_test::all_types::xml", "~unit_test::all_types::json", "~unit_test::all_types::csv" };

dfsclient/src/test/resources/generate-datasets.ecl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ IMPORT Std;
22

33
unique_keys := 100000; // Should be less than number of records
44
unique_values := 10212; // Should be less than number of records
5-
totalrecs1 := 10000;
5+
totalrecs1 := 100000;
66

77
childRec := {STRING8 childField1, INTEGER8 childField2, REAL8 childField3};
88

0 commit comments

Comments
 (0)