Skip to content

Commit

Permalink
Add test with too large files
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadeeshan96 committed Sep 18, 2023
1 parent 1415350 commit 47b217b
Show file tree
Hide file tree
Showing 4 changed files with 16,295 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,10 @@ public void testTooLargeStringConstantClass() {
CompileResult result = BCompileUtil.compile("test-src/jvm/tooLargeStringConstantClass");
BRunUtil.invoke(result, "main");
}

@Test
public void testTooLargeFiles() {
CompileResult result = BCompileUtil.compile("test-src/jvm/tooLargeFileTest");
BRunUtil.invoke(result, "main");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
generated
Config.toml
Dependencies.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
org = "testorg"
name = "largefiletest"
version = "0.1.0"

[build-options]
observabilityIncluded = false
Loading

0 comments on commit 47b217b

Please sign in to comment.