From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ot1-x332.google.com (mail-ot1-x332.google.com [IPv6:2607:f8b0:4864:20::332]) by sourceware.org (Postfix) with ESMTPS id 79BD33858D28 for ; Tue, 3 Oct 2023 08:29:47 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 79BD33858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ot1-x332.google.com with SMTP id 46e09a7af769-6c65d096c96so309166a34.1 for ; Tue, 03 Oct 2023 01:29:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1696321786; x=1696926586; darn=sourceware.org; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=RNX55/VOVYwoIYBbVjoDNqNzKOd7yLe96ORGiL1bkLo=; b=ZFlTazbtddCap5Wk+jjzT6aQnt7rYPh/NMWnSi6KaNJh6OHDibfvgFSXg2s0WIPGHj 4mpMivEBQgZB9VFZ6Tv+kqSN02JutjDjSGxj6NmZph3ZN+FmY602qPd6HEHZww2xR2n2 gO+UvqwAgP54ZxX70BPgoXvUfa4Wn5+Jl81RtsiWAsbal69/wjXIW3MSZELY+T1zZxok jI9A7do6o99dpncA85Myp2fx3eC4SkF6IvYXYTmHHUKdYVrreOe7ayYDeMdVTVy80QtB vlUiNTHNbjCepPTNjBTrX4vUFTZabPPjlyCytF6jrKy38FJ87mI4gih9ASOntOsx3wff Z29g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1696321786; x=1696926586; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=RNX55/VOVYwoIYBbVjoDNqNzKOd7yLe96ORGiL1bkLo=; b=WNYk17DK54ja8yiYVKg+jbWbO0ym4oENWjZsE1UMwA0W+tJ6dzYNu3U3uEFME5SP3Q z2/4Kz1vGfYP/QQxyZ6kwkkDMEEolYnYVgZoKXogy0Ci7Po50+FoWP8laay8qDGwE2oA Q0rLh8y+0ClOz75jDWCcCqw/0D+FVuD7ow3GKecJK34f230ufSpiGKdxBa5dV6/uUHCi 8YQN3HQbol5O28Vg+Rw4R9LJ7D79lenm8hYYZ9dSyCvqF5GxjgpD4Tius5i56MnK4/Uc 0pxrlnySg+hjt2RwUdHQGeuiGnu7GO18nTiIjL8eKo5doMLCntBFHIt+8v8zPre4iawb wBmQ== X-Gm-Message-State: AOJu0Yygy2DQ0Da6m6POVb+fqL9pztybKXoDe0L3S7BEzSz6xbUu+1TD rmuo4WbxTEEn36zzM0KYGzmSJjKsJvklLBkE048gC96D X-Google-Smtp-Source: AGHT+IH0PFIpB+NHjvzB6G105cMw94/LTHZ/0Ho202vDG+1KzgybF7DQo2i769fJvTkjKxYDSDhRZIDYsOqDLCU3OeE= X-Received: by 2002:a9d:7310:0:b0:6c2:1ff0:b2e1 with SMTP id e16-20020a9d7310000000b006c21ff0b2e1mr1061761otk.4.1696321786555; Tue, 03 Oct 2023 01:29:46 -0700 (PDT) MIME-Version: 1.0 From: Panicz Maciej Godek Date: Tue, 3 Oct 2023 09:23:25 +0200 Message-ID: Subject: Specifying parent load path To: kawa Content-Type: multipart/alternative; boundary="0000000000008331b20606cbb1c4" X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: --0000000000008331b20606cbb1c4 Content-Type: text/plain; charset="UTF-8" I recently decided to clean up the GRASP repository a bit. Previously, all the modules were piled in a single 'src/' directory, but I'm splitting it into a few different directories. Among those files, there were some tests included. They were essentially stand-alone programs, but I thought it would be nice to move them all into 'src/tests/' directory. The only problem is that once I do that, they no longer see their dependency modules. I tried adding -Dkawa.include.path="|:`pwd`/src" and -Dkawa.include.path="|:.." to the test runner, but none of it helped. Here's the implementation of the test runner: https://github.com/panicz/grasp/blob/main/run-tests Is it possible to hint Kawa to look for modules in the file's parent directory? --0000000000008331b20606cbb1c4--