view scripts/test/dirname.test @ 1423:8059cfd67acd draft

Building busybox from source needs find -not (a synonym for posix's "!").
author Rob Landley <rob@landley.net>
date Tue, 05 Aug 2014 19:32:44 -0500
parents 786841fdb1e0
children
line wrap: on
line source

#!/bin/bash

[ -f testing.sh ] && . testing.sh

#testing "name" "command" "result" "infile" "stdin"

testing "dirname /-only" "dirname ///////" "/\n" "" ""
testing "dirname trailing /" "dirname a//////" ".\n" "" ""
testing "dirname combined" "dirname /////a///b///c///d/////" "/////a///b///c\n" "" ""
testing "dirname /a/" "dirname /////a///" "/\n" "" ""