Skip to content

Commit

Permalink
Update test runner following addition of extended test dir
Browse files Browse the repository at this point in the history
  • Loading branch information
alancai98 committed Oct 7, 2022
1 parent b272441 commit d23e625
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ private val LANG_KOTLIN_EVAL_SKIP_LIST = listOf(
// plk no STRICT/ERROR mode
Pair("""char_length null and missing propagation{in:"missing",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""character_length null and missing propagation{in:"missing",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_add null and missing propagation{time_part:year,quantity:"missing",timestamp:"`2017T`",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_add null and missing propagation{time_part:year,quantity:1,timestamp:"missing",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_add null and missing propagation{time_part:year,quantity:"null",timestamp:"missing",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_add null and missing propagation{time_part:year,quantity:"missing",timestamp:"null",result:(success missing::null)}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""trim null and missing propagation{sql:"trim(missing)"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""trim null and missing propagation{sql:"trim(leading from missing)"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""trim null and missing propagation{sql:"trim(trailing from missing)"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Expand Down Expand Up @@ -141,23 +137,7 @@ private val LANG_KOTLIN_EVAL_SKIP_LIST = listOf(
Pair("""substring null and missing propagation 3 arguments{target:"''",start_pos:"missing",quantity:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""upper null and missing propagation{param:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""lower null and missing propagation{param:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp single argument missing propagation""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp null and missing propagation{string:"missing",pattern:"'y'"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp null and missing propagation{string:"''",pattern:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp null and missing propagation{string:"missing",pattern:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp null and missing propagation{string:"null",pattern:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_timestamp null and missing propagation{string:"missing",pattern:"null"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""size null and missing propagation{param:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_diff null and missing propagation{result:(success null),time_part:"year",left:"missing",right:"`2017T`"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_diff null and missing propagation{result:(success null),time_part:"year",left:"`2017T`",right:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_diff null and missing propagation{result:(success null),time_part:"year",left:"null",right:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""date_diff null and missing propagation{result:(success null),time_part:"year",left:"missing",right:"null"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""extract null and missing propagation{time_part:"year",timestamp:"missing"}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_string null and missing propagation{timestamp:"missing",pattern:"null",result:null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_string null and missing propagation{timestamp:"null",pattern:"missing",result:null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_string null and missing propagation{timestamp:"missing",pattern:"'y'",result:null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_string null and missing propagation{timestamp:"`2000T`",pattern:"missing",result:null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""to_string null and missing propagation{timestamp:"missing",pattern:"missing",result:null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""|| valid cases{lparam:"null",rparam:"missing",result:missing::null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""|| valid cases{lparam:"missing",rparam:"null",result:missing::null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Pair("""|| valid cases{lparam:"missing",rparam:"'b'",result:missing::null}""", ERROR_EVAL_MODE_COMPILE_OPTIONS),
Expand Down

0 comments on commit d23e625

Please sign in to comment.