Skip to content

Commit 6c74a2e

Browse files
comments and changes
1 parent d704a8c commit 6c74a2e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/tests/conduit/t_conduit_execution.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ template <typename ArrayType>
141141
void
142142
expect_doubled_execution_values(const ArrayType &values)
143143
{
144+
// Shared by the data array and data accessor execution tests.
144145
EXPECT_EQ(values.number_of_elements(), EXECUTION_TEST_ARRAY_SIZE);
145146
for(index_t i = 0; i < EXECUTION_TEST_ARRAY_SIZE; i++)
146147
{
@@ -2208,11 +2209,11 @@ TEST(conduit_execution, strawman_data_array_src_device_des_host)
22082209
// }
22092210

22102211
//-----------------------------------------------------------------------------
2211-
int
2212-
main(int argc, char *argv[])
2212+
int main(int argc, char *argv[])
22132213
{
22142214
::testing::InitGoogleTest(&argc, argv);
22152215

2216+
// allow override of the data size via the command line
22162217
if(argc == 2)
22172218
{
22182219
EXECUTION_TEST_ARRAY_SIZE = atoi(argv[1]);

0 commit comments

Comments
 (0)