This is an automated email from the ASF dual-hosted git repository.
iwasakims pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 05372f4 BIGTOP-3590. Hbase smoke tests failed on Ubuntu 20.04. (#822)
05372f4 is described below
commit 05372f4f8a2844fee5511a6b3ea0a6c179bf925d
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Mon Oct 25 18:54:22 2021 +0900
BIGTOP-3590. Hbase smoke tests failed on Ubuntu 20.04. (#822)
(cherry picked from commit 1f0f13fb0862d48e0121dbe9dd44e64638d32947)
---
.../org/apache/bigtop/itest/hbase/smoke/TestHBaseImportExport.groovy | 1 +
.../groovy/org/apache/bigtop/itest/hbase/smoke/TestImportTsv.groovy | 3 +--
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestHBaseImportExport.groovy
b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestHBaseImportExport.groovy
index 14c20f2..1427bc4 100644
---
a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestHBaseImportExport.groovy
+++
b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestHBaseImportExport.groovy
@@ -95,6 +95,7 @@ class TestHBaseImportExport {
admin.deleteTable(orig)
admin.disableTable(export)
admin.deleteTable(export)
+ sh.exec("hadoop fs -rm -r -skipTrash 'orig_*'");
}
@Test
diff --git
a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestImportTsv.groovy
b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestImportTsv.groovy
index decd116..f94a641 100644
---
a/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestImportTsv.groovy
+++
b/bigtop-tests/test-artifacts/hbase/src/main/groovy/org/apache/bigtop/itest/hbase/smoke/TestImportTsv.groovy
@@ -92,8 +92,7 @@ public class TestImportTsv {
// delete data and junk from HDFS
sh.exec("hadoop fs -rm -r -skipTrash $DATADIR1",
"hadoop fs -rm -r -skipTrash $DATADIR2",
- "hadoop fs -rm -r -skipTrash /user/$USER/hbase*",
- "hadoop fs -rm -r -skipTrash /user/$USER/orig_*");
+ "hadoop fs -rm -r -skipTrash '/user/$USER/hbase*'");
assertTrue("teardown failed", sh.getRet() == 0);
}