From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from secure.elehost.com (secure.elehost.com [185.209.179.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3B5E3208D1 for ; Thu, 1 Aug 2024 12:15:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.209.179.11 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722514551; cv=none; b=uwtIFJcvSIMkR8Wv4ZVe7ZYvl/7J024Vtljmn2M8E3rpi6vh7pfP4r/azv3kLDCN3KBniB/4RECRjW8RLDuIVM+IMCiZ1OZNKYwqR+EFtMXCFwTK1fo0vpcee1uw7Tt1qOPxAvwPRW+W1TxOYVQvZA3HiNTE6m4EGFSkvQ1pk1o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722514551; c=relaxed/simple; bh=1Ak/f/0l6Uv667RD2eZl93YKRphPKQkgGljMjWyqo3c=; h=From:To:Cc:References:In-Reply-To:Subject:Date:Message-ID: MIME-Version:Content-Type; b=i5SGxnnFm8CiRULn2awmSrDXJcmGVg7k12wR20j2Ua/yAFCb0q14UGpxajlff5SLevJBU6GMgwBrmDg72tSoJKn02iCdQA06RtHemADgNqTvpI9TZK7u96sZ8TXNgBjAiA5ecAjxhmTX/OlpEj1nnpUCoJun3oeqfdDOhln1Sy4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=nexbridge.com; spf=pass smtp.mailfrom=nexbridge.com; arc=none smtp.client-ip=185.209.179.11 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=nexbridge.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=nexbridge.com X-Virus-Scanned: Debian amavisd-new at secure.elehost.com Received: from Mazikeen (pool-99-228-12-196.cpe.net.cable.rogers.com [99.228.12.196]) (authenticated bits=0) by secure.elehost.com (8.15.2/8.15.2/Debian-22ubuntu3) with ESMTPSA id 471CFWBx3424909 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 1 Aug 2024 12:15:32 GMT Reply-To: From: To: "'Patrick Steinhardt'" Cc: "'Josh Steadmon'" , , "=?iso-8859-1?Q?'Ren=E9_Scharfe'?=" , "'Junio C Hamano'" , "'Kyle Lippincott'" , "'Phillip Wood'" References: <463oz7j4btei57brq42zlnsydguu74n2n22rhdq7iwjk4y2bei@6r32nghurrmr> <00a801dae384$de2780d0$9a768270$@nexbridge.com> In-Reply-To: Subject: RE: [RFC PATCH 1/3] t: import the clar unit testing framework Date: Thu, 1 Aug 2024 08:15:27 -0400 Organization: Nexbridge Inc. Message-ID: <01c201dae40c$821ab5e0$865021a0$@nexbridge.com> Precedence: bulk X-Mailing-List: git@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 16.0 Content-Language: en-ca Thread-Index: AQE2Q9x0fuag13GoRDOLG7kBaq5wcQE8qfSQAlNXoAsBzj75QwLkmT4Ksxl6KmA= On Thursday, August 1, 2024 5:32 AM, Patrick Steinhardt wrote: >On Wed, Jul 31, 2024 at 04:04:29PM -0400, rsbecker@nexbridge.com wrote: >> On Wednesday, July 31, 2024 2:27 PM, Josh Steadmon wrote: >> >On 2024.07.31 11:04, Patrick Steinhardt wrote: >> >> Import the clar unit testing framework at commit faa8419 (Merge >> >> pull request #93 from clar-test/ethomson/fixtures, 2023-12-14). The >> >> framework will be wired up in subsequent commits. >> > >> >Rather than forking our own copy of clar, could we just add it as a >> submodule >> >instead? >> >> What are the requirements to build/use this? > >In its current form, Python is a dependency due to "generate.py". I mentioned >elsewhere though that I'd be happy to port it to our language of choice. > >Other than that it should only require a C89 compiler. Unfortunately, it needs gcc, but that is just because of its Makefile using cc -Wall (not portable).