Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for execExtended (0.42 sec)

  1. cmd/object_api_suite_test.go

    	globalCompressConfigMu.Lock()
    	globalCompressConfig.Enabled = false
    	globalCompressConfig.AllowEncrypted = false
    	globalCompressConfigMu.Unlock()
    	globalAutoEncryption = false
    	GlobalKMS = nil
    }
    
    func execExtended(t *testing.T, fn func(t *testing.T)) {
    	// Exec with default settings...
    	resetCompressEncryption()
    	t.Run("default", func(t *testing.T) {
    		fn(t)
    	})
    
    	if testing.Short() {
    		return
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 32.3K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    // This can be used to test functionality when reading and writing data.
    func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
    	execExtended(t, func(t *testing.T) {
    		ExecObjectLayerAPITest(t, objAPITest, endpoints)
    	})
    }
    
    // function to be passed to ExecObjectLayerAPITest, for executing object layr API handler tests.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
Back to top