@@ -139,18 +139,31 @@ func TestCpuProfile(t *testing.T) {
139
139
as .NoError (os .Chdir (cwd ))
140
140
})
141
141
142
- _ , _ , err = treefmt (t , "-C" , tempDir , "--allow-missing-formatter" , "--cpu-profile" , "cpu.pprof" )
143
- as .NoError (err )
144
- as .FileExists (filepath .Join (tempDir , "cpu.pprof" ))
145
- _ , err = os .Stat (filepath .Join (tempDir , "cpu.pprof" ))
146
- as .NoError (err )
142
+ // change to temp dir
143
+ as .NoError (os .Chdir (tempDir ), "failed to change to temp dir" )
144
+ // allow missing formatter
145
+ t .Setenv ("TREEFMT_ALLOW_MISSING_FORMATTER" , "true" )
147
146
147
+ treefmt2 (
148
+ t , args ("--cpu-profile" , "cpu.pprof" ),
149
+ func (_ []byte , _ * stats.Stats , err error ) {
150
+ // check the profile exists
151
+ as .NoError (err )
152
+ as .FileExists (filepath .Join (tempDir , "cpu.pprof" ))
153
+ },
154
+ )
155
+
156
+ // test with env
148
157
t .Setenv ("TREEFMT_CPU_PROFILE" , "env.pprof" )
149
- _ , _ , err = treefmt (t , "-C" , tempDir , "--allow-missing-formatter" )
150
- as .NoError (err )
151
- as .FileExists (filepath .Join (tempDir , "env.pprof" ))
152
- _ , err = os .Stat (filepath .Join (tempDir , "env.pprof" ))
153
- as .NoError (err )
158
+
159
+ treefmt2 (
160
+ t , args (),
161
+ func (_ []byte , _ * stats.Stats , err error ) {
162
+ // check the profile exists
163
+ as .NoError (err )
164
+ as .FileExists (filepath .Join (tempDir , "env.pprof" ))
165
+ },
166
+ )
154
167
}
155
168
156
169
func TestAllowMissingFormatter (t * testing.T ) {
0 commit comments