mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
AK: Remove relative path in AK testsuite
With relative filenames in the executable code, the executable is basically not relocatable. This makes out-of-source builds unneccesery hard. This patchset moves the relative link into the filesystem: that can be handled much easier :^)
This commit is contained in:
parent
94afcb54de
commit
d0d093fef5
Notes:
sideshowbarker
2024-07-19 07:58:55 +09:00
Author: https://github.com/lnzero1dev Commit: https://github.com/SerenityOS/serenity/commit/d0d093fef50 Pull-request: https://github.com/SerenityOS/serenity/pull/1592
2 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
|||
|
||||
TEST_CASE(load_form)
|
||||
{
|
||||
FILE* fp = fopen("../../Base/home/anon/little/test.frm", "r");
|
||||
FILE* fp = fopen("test.frm", "r");
|
||||
ASSERT(fp);
|
||||
|
||||
StringBuilder builder;
|
||||
|
|
1
AK/Tests/test.frm
Symbolic link
1
AK/Tests/test.frm
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../Base/home/anon/little/test.frm
|
Loading…
Reference in a new issue