On Sun, Jun 23, 2024 at 09:03:01PM +0800, Zorro Lang wrote: > > +# SPDX-License-Identifier: GPL-2.0 > > +# Copyright (c) 2019 Red Hat, Inc. All Rights Reserved. > ^^^^ > Should I keep "2019" or change it to 2024, or no matter :) No Red Hat employee has touched this since 2019. And my changes mostly removed boilerplate code, so there isn't much of a point in adding my copyright notice here. > > +_scratch_mkfs 2>&1 >> $seqres.full > > Wrong order:) ">>$seqres.full 2>&1" Ok. > If a case has background process, better to do kill&wait in _cleanup, > for unexpected Ctrl^C when fstests is running. e.g. Ok. > > _cleanup{} > { > # try to kill all background processes > wait > cd / > rm -r -f $tmp.* > } > > I'm not sure if there's a good to way to do "kill all background > processes" in this case, or if it's necessary. But a "wait" might > be worth, to avoid the "Device Busy" error. Any thoughts? No really sure, but I'll play around with a few variants.