mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
revert uncomment
This commit is contained in:
parent
765ac75fe9
commit
7288e0aa63
1 changed files with 4 additions and 3 deletions
|
@ -74,6 +74,10 @@ public:
|
||||||
|
|
||||||
luauDirRel += "/..";
|
luauDirRel += "/..";
|
||||||
std::optional<std::string> parentPath = getParentPath(luauDirAbs);
|
std::optional<std::string> parentPath = getParentPath(luauDirAbs);
|
||||||
|
if (parentPath)
|
||||||
|
{
|
||||||
|
printf("%s\n", (*parentPath).c_str());
|
||||||
|
}
|
||||||
REQUIRE_MESSAGE(parentPath, "Error getting Luau path");
|
REQUIRE_MESSAGE(parentPath, "Error getting Luau path");
|
||||||
luauDirAbs = *parentPath;
|
luauDirAbs = *parentPath;
|
||||||
}
|
}
|
||||||
|
@ -209,7 +213,6 @@ TEST_CASE("PathNormalization")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
|
|
||||||
TEST_CASE_FIXTURE(ReplWithPathFixture, "RequireSimpleRelativePath")
|
TEST_CASE_FIXTURE(ReplWithPathFixture, "RequireSimpleRelativePath")
|
||||||
{
|
{
|
||||||
|
@ -390,6 +393,4 @@ TEST_CASE_FIXTURE(ReplWithPathFixture, "RequirePathWithParentAlias")
|
||||||
assertOutputContainsAll({"true", "result from other_dependency"});
|
assertOutputContainsAll({"true", "result from other_dependency"});
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
TEST_SUITE_END();
|
TEST_SUITE_END();
|
||||||
|
|
Loading…
Add table
Reference in a new issue