URI: 
       tests: Use tmp. prefix in 0002-printf - sbase - suckless unix tools
  HTML git clone git://git.suckless.org/sbase
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit c15aa18ff3958f4f72137dc8139744c5f028e83f
   DIR parent f64db1fa07393ef80a489e49ab926712795ac716
  HTML Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
       Date:   Thu, 20 Nov 2025 15:01:30 +0100
       
       tests: Use tmp. prefix in 0002-printf
       
       The clear rule of the Makefile only knows about files
       that begin with tmp, and having files with the prefix
       exp can produce dirty workcopies even after running
       make clean.
       
       Diffstat:
         M tests/0002-printf.sh                |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/tests/0002-printf.sh b/tests/0002-printf.sh
       @@ -2,10 +2,10 @@
        
        set -e
        
       -exp1=exp1.$$
       -exp2=exp2.$$
       -res1=res1.$$
       -res2=res2.$$
       +exp1=tmp1.$$
       +exp2=tmp2.$$
       +res1=tmp3.$$
       +res2=tmp4.$$
        
        cleanup()
        {