Skip to content

Commit

Permalink
Fix semantic and syntax test dirs not following the same naming conve…
Browse files Browse the repository at this point in the history
…ntion
  • Loading branch information
cameel authored and aarlt committed Jan 28, 2025
1 parent b59eafa commit a389646
Show file tree
Hide file tree
Showing 92 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import {B} from "./B/b.sol";
import {C} from "../c.sol";
import {D} from "../D/d.sol";
import {G} from "./E/../F/../G/./g.sol";
import {H} from "../../../../_relative_imports/h.sol";
import {H} from "../../../../_relativeImports/h.sol";
contract Contract {
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
==== ExternalSource: _non_normalized_paths//a.sol ====
==== ExternalSource: C/////c.sol=_non_normalized_paths/c.sol ====
==== ExternalSource: C/../////D/d.sol=_non_normalized_paths///d.sol ====
import {A} from "_non_normalized_paths//a.sol";
==== ExternalSource: _nonNormalizedPaths//a.sol ====
==== ExternalSource: C/////c.sol=_nonNormalizedPaths/c.sol ====
==== ExternalSource: C/../////D/d.sol=_nonNormalizedPaths///d.sol ====
import {A} from "_nonNormalizedPaths//a.sol";
import {C} from "C/////c.sol";
import {D} from "C/../////D/d.sol";
contract Contract {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
==== ExternalSource: _relative_imports/dir/contract.sol ====
==== ExternalSource: _relative_imports/dir/a.sol ====
==== ExternalSource: _relative_imports/dir/B/b.sol ====
==== ExternalSource: _relative_imports/c.sol ====
==== ExternalSource: _relative_imports/D/d.sol ====
==== ExternalSource: _relative_imports/dir/G/g.sol ====
==== ExternalSource: _relative_imports/h.sol ====
import {A, B, C, D, G, H, Contract} from "_relative_imports/dir/contract.sol";
==== ExternalSource: _relativeImports/dir/contract.sol ====
==== ExternalSource: _relativeImports/dir/a.sol ====
==== ExternalSource: _relativeImports/dir/B/b.sol ====
==== ExternalSource: _relativeImports/c.sol ====
==== ExternalSource: _relativeImports/D/d.sol ====
==== ExternalSource: _relativeImports/dir/G/g.sol ====
==== ExternalSource: _relativeImports/h.sol ====
import {A, B, C, D, G, H, Contract} from "_relativeImports/dir/contract.sol";
contract CC {
}
// ----
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
==== ExternalSource: ./a.sol=_source_name_starting_with_dots/dot_a.sol ====
==== ExternalSource: ../b.sol=_source_name_starting_with_dots/dot_dot_b.sol ====
==== ExternalSource: _source_name_starting_with_dots/dir/a.sol ====
==== ExternalSource: _source_name_starting_with_dots/b.sol ====
==== ExternalSource: _source_name_starting_with_dots/dir/contract.sol ====
import {A, B} from "_source_name_starting_with_dots/dir/contract.sol";
==== ExternalSource: ./a.sol=_sourceNameStartingWithDots/dot_a.sol ====
==== ExternalSource: ../b.sol=_sourceNameStartingWithDots/dot_dot_b.sol ====
==== ExternalSource: _sourceNameStartingWithDots/dir/a.sol ====
==== ExternalSource: _sourceNameStartingWithDots/b.sol ====
==== ExternalSource: _sourceNameStartingWithDots/dir/contract.sol ====
import {A, B} from "_sourceNameStartingWithDots/dir/contract.sol";
contract Contract {
}
// ----
Expand Down

0 comments on commit a389646

Please sign in to comment.