unskipping more tests

This commit is contained in:
Andy Arthur
2022-05-10 14:34:05 -07:00
parent 01587c8c20
commit eccb060ca8
8 changed files with 8 additions and 7 deletions

View File

@@ -110,6 +110,7 @@ SQL
}
@test "column_tags: Merging branches that use the same tag referring to different column names fails" {
skip_nbf_dolt_1
dolt sql <<SQL
CREATE TABLE test (
pk BIGINT NOT NULL COMMENT 'tag:1234',

View File

@@ -232,10 +232,7 @@ teardown() {
}
@test "dump: SQL type - with keyless tables" {
if [ "$DOLT_FORMAT_FEATURE_FLAG" = true ]
then
skip "V1 storage format does not support keyless tables yet"
fi
skip_nbf_dolt_1
dolt sql -q "CREATE TABLE new_table(pk int primary key);"
dolt sql -q "INSERT INTO new_table VALUES (1);"

View File

@@ -144,6 +144,7 @@ DELIM
}
@test "import-create-tables: use -f to overwrite data in existing table with fk constraints" {
skip_nbf_dolt_1
cat <<DELIM > other.csv
pk,c1,c2,c3,c4,c5
8,1,2,3,4,5

View File

@@ -1,4 +1,5 @@
#!/usr/bin/env bats
load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
REPO_NAME="dolt_repo_$$"

View File

@@ -313,7 +313,7 @@ NOT_VALID_REPO_ERROR="The current directory is not a valid dolt repository."
}
@test "no-repo: init with new storage version" {
DOLT_FORMAT_FEATURE_FLAG=true dolt init
DOLT_DEFAULT_BIN_FORMAT="__DOLT_1__" dolt init
run cat .dolt/noms/manifest
[[ "$output" =~ "__DOLT_1__" ]]
[[ ! "$output" =~ "__LD_1__" ]]

View File

@@ -3,6 +3,7 @@ load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
setup_common
skip_nbf_dolt_1
cat <<DELIM > 1pk5col-ints.csv
pk,c1,c2,c3,c4,c5

View File

@@ -2,9 +2,9 @@
load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
skip_nbf_dolt_1
skiponwindows "tests are flaky on Windows"
setup_common
skip_nbf_dolt_1
# Needed for dolt_branches test
cd $BATS_TMPDIR

View File

@@ -2,8 +2,8 @@
load $BATS_TEST_DIRNAME/helper/common.bash
setup() {
skip_nbf_dolt_1
setup_common
skip_nbf_dolt_1
dolt sql <<"SQL"
CREATE TABLE parent3 (pk BIGINT PRIMARY KEY, v1 BIGINT, INDEX (v1));
CREATE TABLE child3 (pk BIGINT PRIMARY KEY, v1 BIGINT, CONSTRAINT fk_name1 FOREIGN KEY (v1) REFERENCES parent3 (v1));