blob: 927c8ffbbc7ee4ea56e79bea568974f3da425e35 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sysds.test.functions.data.misc;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
import org.apache.sysds.common.Types.ExecMode;
import org.apache.sysds.lops.LopProperties.ExecType;
import org.apache.sysds.test.AutomatedTestBase;
import org.apache.sysds.test.TestConfiguration;
public class TimeTest extends AutomatedTestBase
{
private final static String TEST_NAME = "time";
private final static String TEST_DIR = "functions/data/";
private final static String TEST_CLASS_DIR = TEST_DIR + TimeTest.class.getSimpleName() + "/";
@Override
public void setUp() {
addTestConfiguration(TEST_NAME,new TestConfiguration(TEST_CLASS_DIR, TEST_NAME,new String[]{"B"}));
}
@Test
public void testTime() {
runTimeTest(ExecType.CP);
}
private void runTimeTest(ExecType instType)
{
ExecMode platformOld = rtplatform;
switch( instType ) {
case SPARK: rtplatform = ExecMode.SPARK; break;
default: rtplatform = ExecMode.HYBRID; break;
}
try {
loadTestConfiguration(getTestConfiguration(TEST_NAME));
String HOME = SCRIPT_DIR + TEST_DIR;
fullDMLScriptName = HOME + TEST_NAME + ".dml";
//programArgs = new String[]{"-explain", "hops", "-stats", "2", "-args", output("B") };
programArgs = new String[]{"-args", output("B") };
String out = runTest(null).toString();
assertTrue("stdout:" + out, out.contains("time diff : "));
}
finally {
rtplatform = platformOld;
}
}
}