git: 3ee87f8a4d7a - main - stress2: Use tests as the default test user.

From: Dag-Erling Smørgrav <des_at_FreeBSD.org>
Date: Wed, 04 Dec 2024 13:13:36 UTC
The branch main has been updated by des:

URL: https://cgit.FreeBSD.org/src/commit/?id=3ee87f8a4d7a56c846d356d028e77bd72a0e1fbb

commit 3ee87f8a4d7a56c846d356d028e77bd72a0e1fbb
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2024-12-04 13:07:05 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2024-12-04 13:12:43 +0000

    stress2: Use tests as the default test user.
    
    This allows some tests to run without prior configuration; others will
    have to be modified to use `su -m` since the tests account is locked.
    
    Reviewed by:    allanjude
    Differential Revision:  https://reviews.freebsd.org/D47875
---
 tools/test/stress2/default.cfg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/test/stress2/default.cfg b/tools/test/stress2/default.cfg
index bff7f3f168a9..dbd1ca0bbc43 100644
--- a/tools/test/stress2/default.cfg
+++ b/tools/test/stress2/default.cfg
@@ -56,7 +56,7 @@ testcases/tcp/tcp
 
 export diskimage=${diskimage:-/tmp/diskimage}	# Location of 1G disk image
 export mntpoint=${mntpoint:-/mnt}		# Disk image mount point
-export testuser=${testuser:-TBD}		# Name of non root test user
+export testuser=${testuser:-tests}		# Name of non root test user
 export mdstart=${mdstart:-10}			# Start of free md units
 export newfs_flags=${newfs_flags:-"-U"}		# Default file system flags
 export stress2origin=${stress2origin:-`pwd`}