This is an automated email from the ASF dual-hosted git repository.
philo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new cea8706b89 [GLUTEN-9557][VL] Remove outdated test exclusion logic
(#9558)
cea8706b89 is described below
commit cea8706b8973c2e78a8cc552d478364febd96e56
Author: dcoliversun <[email protected]>
AuthorDate: Thu May 8 22:04:04 2025 +0800
[GLUTEN-9557][VL] Remove outdated test exclusion logic (#9558)
---
.../functions/ScalarFunctionsValidateSuite.scala | 18 ------------------
1 file changed, 18 deletions(-)
diff --git
a/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala
b/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala
index 2623514274..618f7e8124 100644
---
a/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala
+++
b/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala
@@ -23,9 +23,6 @@ import org.apache.spark.{SparkConf, SparkException}
import org.apache.spark.sql.catalyst.optimizer.NullPropagation
import org.apache.spark.sql.execution.ProjectExec
-import org.scalactic.source.Position
-import org.scalatest.Tag
-
class ScalarFunctionsValidateSuiteRasOff extends ScalarFunctionsValidateSuite {
override protected def sparkConf: SparkConf = {
super.sparkConf
@@ -38,21 +35,6 @@ class ScalarFunctionsValidateSuiteRasOn extends
ScalarFunctionsValidateSuite {
super.sparkConf
.set("spark.gluten.ras.enabled", "true")
}
-
- // TODO: Fix the incompatibilities then remove this method. See GLUTEN-7600.
- override protected def test(testName: String, testTags: Tag*)(testFun: =>
Any)(implicit
- pos: Position): Unit = {
- val exclusions = Set(
- "isnull function",
- "null input for array_size",
- "Test make_ym_interval function"
- )
- if (exclusions.contains(testName)) {
- super.ignore(testName, testTags: _*)(testFun)(pos)
- return
- }
- super.test(testName, testTags: _*)(testFun)(pos)
- }
}
abstract class ScalarFunctionsValidateSuite extends FunctionsValidateSuite {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]