Update TODO

This TODO was addressed here:

https://github.com/libcheck/check/pull/158
3987c1d906ee68e0a6a5fd7888d88e0873f914d9

Signed-off-by: fandehui <fandehui@xfusion.com>
This commit is contained in:
fandehui 2023-12-27 10:22:00 +08:00
parent ac357b3ad6
commit 12d175f073
2 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,29 @@
From 6e93935189d0fc0b958d087f007d2b90eeba2f87 Mon Sep 17 00:00:00 2001
From: Branden Archer <b.m.archer4@gmail.com>
Date: Wed, 20 Jun 2018 17:19:10 -0400
Subject: [PATCH] Update TODO
This TODO was addressed here:
https://github.com/libcheck/check/pull/158
3987c1d906ee68e0a6a5fd7888d88e0873f914d9
---
TODO | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TODO b/TODO
index 7236c69..818f813 100644
--- a/TODO
+++ b/TODO
@@ -61,7 +61,7 @@ Check source code:
[ ] * Eliminate abbreviations like nf for number_failed
[0.9.13] * Run indent on everything, make sure it works well.
-[ ] * Fix START_TEST/END_TEST to look like valid C code.
+[0.13.0] * Fix START_TEST/END_TEST to look like valid C code.
[ ] * Document things way more.
[ ] * Create check.h automatically using makeheaders.c (not sure)
[ ] * Eliminate check_ prefix from files in src/ ... not needed
--
2.42.0.windows.2

View File

@ -1,6 +1,6 @@
Name: check
Version: 0.12.0
Release: 8
Release: 9
Summary: A unit testing framework for C
Source0: https://github.com/libcheck/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
License: LGPLv2+
@ -11,6 +11,7 @@ Patch2: %{name}-0.12.0-Add-warning-on-floating-point-eq-and-ne-assertion
Patch3: %{name}-0.12.0-Fixed-typo-in-ck_assert_str_eq-doc.patch
Patch4: %{name}-0.12.0-fix-title-of-web-install.html.patch
Patch5: %{name}-0.12.0-Fix-START_TEST-to-look-like-valid-C-code.patch
Patch6: %{name}-0.12.0-Update-TODO.patch
BuildRequires: gcc libtool patchutils pkgconfig
BuildRequires: subunit-devel texinfo
@ -97,6 +98,9 @@ make check
%{_mandir}/man1/checkmk.1*
%changelog
* Wed Dec 27 2023 fandehui <fandehui@xfusion.com> - 0.12.0-9
- Update TODO
* Mon Dec 11 2023 fandehui <fandehui@xfusion.com> - 0.12.0-8
- Fix START_TEST to look like valid C code.