aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/skylark
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/skylark')
-rw-r--r--src/test/java/com/google/devtools/build/lib/skylark/SkylarkRuleImplementationFunctionsTest.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/skylark/SkylarkRuleImplementationFunctionsTest.java b/src/test/java/com/google/devtools/build/lib/skylark/SkylarkRuleImplementationFunctionsTest.java
index 1a443a17f5..2db09cc216 100644
--- a/src/test/java/com/google/devtools/build/lib/skylark/SkylarkRuleImplementationFunctionsTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skylark/SkylarkRuleImplementationFunctionsTest.java
@@ -58,6 +58,7 @@ import java.util.List;
import java.util.Map;
import java.util.regex.Pattern;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
@@ -1736,6 +1737,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
getConfiguredTarget("//test:silly");
}
+ @Ignore
@Test
public void testLazyArgs() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1790,6 +1792,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
.inOrder();
}
+ @Ignore
@Test
public void testScalarJoinWithErrorMessage() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1799,6 +1802,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
"args = ruleContext.actions.args()\n" + "args.add(1, join_with=':')");
}
+ @Ignore
@Test
public void testScalarBeforeEachErrorMessage() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1808,6 +1812,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
"args = ruleContext.actions.args()\n" + "args.add(1, before_each='illegal')");
}
+ @Ignore
@Test
public void testLazyArgIllegalFormatString() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1833,6 +1838,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
}
}
+ @Ignore
@Test
public void testLazyArgBadMapFn() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1859,6 +1865,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
}
}
+ @Ignore
@Test
public void testLazyArgMapFnReturnsWrongType() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");
@@ -1885,6 +1892,7 @@ public class SkylarkRuleImplementationFunctionsTest extends SkylarkTestCase {
}
}
+ @Ignore
@Test
public void createShellWithLazyArgs() throws Exception {
SkylarkRuleContext ruleContext = createRuleContext("//foo:foo");