mirror of
https://github.com/apache/impala.git
synced 2026-01-05 12:01:11 -05:00
11 lines
254 B
Bash
Executable File
11 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
|
|
cd $IMPALA_FE_DIR
|
|
mvn exec:java -Dexec.mainClass=com.cloudera.impala.testutil.PlanService \
|
|
-Dexec.classpathScope=test &
|
|
PID=$!
|
|
cd $IMPALA_HOME
|
|
make test
|
|
kill $PID
|