diff options
| author | Karl Zylinski <karl@zylinski.se> | 2024-09-14 18:27:49 +0200 |
|---|---|---|
| committer | Karl Zylinski <karl@zylinski.se> | 2024-09-14 18:27:49 +0200 |
| commit | 19f0127e553940bb333f61ab7e8dab6f7455115e (patch) | |
| tree | 30705898942106f3341d1decec4d335ac15b28cd /core/testing | |
| parent | b12d3124085058bc36f2e8feb5666a0c1f162343 (diff) | |
Moved all packages in core, base, vendor, tests and examples to use new #+ file tag syntax.
Diffstat (limited to 'core/testing')
| -rw-r--r-- | core/testing/events.odin | 2 | ||||
| -rw-r--r-- | core/testing/logging.odin | 2 | ||||
| -rw-r--r-- | core/testing/reporting.odin | 2 | ||||
| -rw-r--r-- | core/testing/runner.odin | 2 | ||||
| -rw-r--r-- | core/testing/signal_handler.odin | 2 | ||||
| -rw-r--r-- | core/testing/signal_handler_libc.odin | 4 | ||||
| -rw-r--r-- | core/testing/signal_handler_other.odin | 16 |
7 files changed, 15 insertions, 15 deletions
diff --git a/core/testing/events.odin b/core/testing/events.odin index c9c4b0271..1a47e2d68 100644 --- a/core/testing/events.odin +++ b/core/testing/events.odin @@ -1,4 +1,4 @@ -//+private +#+private package testing /* diff --git a/core/testing/logging.odin b/core/testing/logging.odin index 1c3fc4603..041489dab 100644 --- a/core/testing/logging.odin +++ b/core/testing/logging.odin @@ -1,4 +1,4 @@ -//+private +#+private package testing /* diff --git a/core/testing/reporting.odin b/core/testing/reporting.odin index 81f1d0646..6752cd79b 100644 --- a/core/testing/reporting.odin +++ b/core/testing/reporting.odin @@ -1,4 +1,4 @@ -//+private +#+private package testing /* diff --git a/core/testing/runner.odin b/core/testing/runner.odin index 386ba8cb5..683db9d15 100644 --- a/core/testing/runner.odin +++ b/core/testing/runner.odin @@ -1,4 +1,4 @@ -//+private +#+private package testing /* diff --git a/core/testing/signal_handler.odin b/core/testing/signal_handler.odin index 047ea0b3a..2f1f7c89a 100644 --- a/core/testing/signal_handler.odin +++ b/core/testing/signal_handler.odin @@ -1,4 +1,4 @@ -//+private +#+private package testing /* diff --git a/core/testing/signal_handler_libc.odin b/core/testing/signal_handler_libc.odin index 27d1a0735..b665b047c 100644 --- a/core/testing/signal_handler_libc.odin +++ b/core/testing/signal_handler_libc.odin @@ -1,5 +1,5 @@ -//+private -//+build windows, linux, darwin, freebsd, openbsd, netbsd, haiku +#+private +#+build windows, linux, darwin, freebsd, openbsd, netbsd, haiku package testing /* diff --git a/core/testing/signal_handler_other.odin b/core/testing/signal_handler_other.odin index d6d494fa4..81f575495 100644 --- a/core/testing/signal_handler_other.odin +++ b/core/testing/signal_handler_other.odin @@ -1,11 +1,11 @@ -//+private -//+build !windows -//+build !linux -//+build !darwin -//+build !freebsd -//+build !openbsd -//+build !netbsd -//+build !haiku +#+private +#+build !windows +#+build !linux +#+build !darwin +#+build !freebsd +#+build !openbsd +#+build !netbsd +#+build !haiku package testing /* |