Skip to content

Commit 3dd6637

Browse files
committed
Disable four test in readline
I don't believe these tests ever ran or passed due to the wrong main being used (ie not gtest's). Signed-off-by: Matt Liberty <[email protected]>
1 parent 71f5440 commit 3dd6637

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dependency_support/org_gnu_readline/readline_test.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ReadlineTest : public Test {
4646
}
4747
};
4848

49-
TEST_F(ReadlineTest, ReadLine) {
49+
TEST_F(ReadlineTest, DISABLED_ReadLine) {
5050
// Create a new input for the purpose of this test
5151
int pipefds[2];
5252
ASSERT_THAT(pipe2(pipefds, 0), Eq(0));
@@ -75,16 +75,16 @@ TEST_F(ReadlineTest, ReadLine) {
7575
ASSERT_THAT(fclose(in), Eq(0));
7676
}
7777

78-
TEST_F(ReadlineTest, TildeMinimal) {
78+
TEST_F(ReadlineTest, DISABLED_TildeMinimal) {
7979
// tilde_expand always appends a /.
8080
TestTilde("~", absl::Substitute("$0/", HomeDirectory()));
8181
}
8282

83-
TEST_F(ReadlineTest, TildeSlash) {
83+
TEST_F(ReadlineTest, DISABLED_TildeSlash) {
8484
TestTilde("~/", absl::Substitute("$0/", HomeDirectory()));
8585
}
8686

87-
TEST_F(ReadlineTest, TildeSlashPath) {
87+
TEST_F(ReadlineTest, DISABLED_TildeSlashPath) {
8888
TestTilde("~/foo/bar",
8989
absl::Substitute("$0/foo/bar", HomeDirectory()));
9090
}

0 commit comments

Comments
 (0)