summaryrefslogtreecommitdiff
path: root/tests/typ/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/compiler')
-rw-r--r--tests/typ/compiler/bytes.typ2
-rw-r--r--tests/typ/compiler/import.typ4
-rw-r--r--tests/typ/compiler/plugin-oob.typ4
-rw-r--r--tests/typ/compiler/plugin.typ10
-rw-r--r--tests/typ/compiler/set.typ2
-rw-r--r--tests/typ/compiler/show-text.typ2
6 files changed, 12 insertions, 12 deletions
diff --git a/tests/typ/compiler/bytes.typ b/tests/typ/compiler/bytes.typ
index 284ef773..a9249bdd 100644
--- a/tests/typ/compiler/bytes.typ
+++ b/tests/typ/compiler/bytes.typ
@@ -2,7 +2,7 @@
// Ref: false
---
-#let data = read("/files/rhino.png", encoding: none)
+#let data = read("/assets/images/rhino.png", encoding: none)
#test(data.len(), 232243)
#test(data.slice(0, count: 5), bytes((137, 80, 78, 71, 13)))
#test(str(data.slice(1, 4)), "PNG")
diff --git a/tests/typ/compiler/import.typ b/tests/typ/compiler/import.typ
index fb7a06b8..5c3a05c9 100644
--- a/tests/typ/compiler/import.typ
+++ b/tests/typ/compiler/import.typ
@@ -189,8 +189,8 @@
---
// Some non-text stuff.
-// Error: 9-27 file is not valid utf-8
-#import "/files/rhino.png"
+// Error: 9-35 file is not valid utf-8
+#import "/assets/images/rhino.png"
---
// Unresolved import.
diff --git a/tests/typ/compiler/plugin-oob.typ b/tests/typ/compiler/plugin-oob.typ
index 4bc16212..4d1ba205 100644
--- a/tests/typ/compiler/plugin-oob.typ
+++ b/tests/typ/compiler/plugin-oob.typ
@@ -2,13 +2,13 @@
// Ref: false
---
-#let p = plugin("/files/plugin-oob.wasm")
+#let p = plugin("/assets/plugins/plugin-oob.wasm")
// Error: 2-14 plugin tried to read out of bounds: pointer 0x40000000 is out of bounds for read of length 1
#p.read_oob()
---
-#let p = plugin("/files/plugin-oob.wasm")
+#let p = plugin("/assets/plugins/plugin-oob.wasm")
// Error: 2-27 plugin tried to write out of bounds: pointer 0x40000000 is out of bounds for write of length 3
#p.write_oob(bytes("xyz"))
diff --git a/tests/typ/compiler/plugin.typ b/tests/typ/compiler/plugin.typ
index 53d96f71..e727355f 100644
--- a/tests/typ/compiler/plugin.typ
+++ b/tests/typ/compiler/plugin.typ
@@ -2,7 +2,7 @@
// Ref: false
---
-#let p = plugin("/files/hello.wasm")
+#let p = plugin("/assets/plugins/hello.wasm")
#test(p.hello(), bytes("Hello from wasm!!!"))
#test(p.double_it(bytes("hey!")), bytes("hey!.hey!"))
#test(
@@ -11,26 +11,26 @@
)
---
-#let p = plugin("/files/hello.wasm")
+#let p = plugin("/assets/plugins/hello.wasm")
// Error: 2-20 plugin function takes 0 arguments, but 1 was given
#p.hello(bytes(""))
---
-#let p = plugin("/files/hello.wasm")
+#let p = plugin("/assets/plugins/hello.wasm")
// Error: 10-14 expected bytes, found boolean
// Error: 27-29 expected bytes, found integer
#p.hello(true, bytes(()), 10)
---
-#let p = plugin("/files/hello.wasm")
+#let p = plugin("/assets/plugins/hello.wasm")
// Error: 2-17 plugin errored with: This is an `Err`
#p.returns_err()
---
-#let p = plugin("/files/hello.wasm")
+#let p = plugin("/assets/plugins/hello.wasm")
// Error: 2-16 plugin panicked: wasm `unreachable` instruction executed
#p.will_panic()
diff --git a/tests/typ/compiler/set.typ b/tests/typ/compiler/set.typ
index b317e60c..23b3a7c6 100644
--- a/tests/typ/compiler/set.typ
+++ b/tests/typ/compiler/set.typ
@@ -40,7 +40,7 @@ Hello *#x*
// Test relative path resolving in layout phase.
#let choice = ("monkey.svg", "rhino.png", "tiger.jpg")
#set enum(numbering: n => {
- let path = "/files/" + choice.at(n - 1)
+ let path = "/assets/images/" + choice.at(n - 1)
move(dy: -0.15em, image(path, width: 1em, height: 1em))
})
diff --git a/tests/typ/compiler/show-text.typ b/tests/typ/compiler/show-text.typ
index 7837bb46..a42abfb2 100644
--- a/tests/typ/compiler/show-text.typ
+++ b/tests/typ/compiler/show-text.typ
@@ -88,6 +88,6 @@ World
---
// Test absolute path in layout phase.
-#show "GRAPH": image("/files/graph.png")
+#show "GRAPH": image("/assets/images/graph.png")
The GRAPH has nodes.