Skip to content

Commit

Permalink
[Stdlib] Make test_utils into a package (#33642)
Browse files Browse the repository at this point in the history
This makes test_utils into a package and removes
the need for all the -I xyz business that we
have to copy everywhere.

modular-orig-commit: 1199db4d5f54b43e96224fcd3bcf545205f0c52e
  • Loading branch information
abduld authored Mar 4, 2024
1 parent 0142ae8 commit e748419
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stdlib/test/builtin/test_file.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is Modular Inc proprietary.
#
# ===----------------------------------------------------------------------=== #
# RUN: %mojo -D CURRENT_DIR=%S -D TEMP_FILE_DIR=%T -debug-level full -I %kernels_test_root %s | FileCheck %s
# RUN: %mojo -D CURRENT_DIR=%S -D TEMP_FILE_DIR=%T -debug-level full %s | FileCheck %s


from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion stdlib/test/collections/test_list.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is Modular Inc proprietary.
#
# ===----------------------------------------------------------------------=== #
# RUN: %mojo -debug-level full -I %kernels_test_root %s
# RUN: %mojo -debug-level full %s

from collections import List

Expand Down
2 changes: 1 addition & 1 deletion stdlib/test/collections/test_vector.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is Modular Inc proprietary.
#
# ===----------------------------------------------------------------------=== #
# RUN: %mojo -debug-level full -I %kernels_test_root %s
# RUN: %mojo -debug-level full %s

from collections.vector import InlinedFixedVector

Expand Down
2 changes: 1 addition & 1 deletion stdlib/test/memory/test_anypointer.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This file is Modular Inc proprietary.
#
# ===----------------------------------------------------------------------=== #
# RUN: %mojo -debug-level full -I %kernels_test_root %s | FileCheck %s --dump-input=always
# RUN: %mojo -debug-level full %s | FileCheck %s --dump-input=always

from memory.anypointer import AnyPointer
from testing import *
Expand Down

0 comments on commit e748419

Please sign in to comment.