Skip to content

Commit

Permalink
xfstests - use latest stable branch
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliDeng committed Feb 19, 2024
1 parent e03975b commit 2478919
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion microsoft/testsuites/xfstests/xfstests.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class XfstestsResult:

class Xfstests(Tool):
repo = "https://git.kernel.org/pub/scm/fs/xfs/xfstests-dev.git"
branch = "v2024.02.09"
common_dep = [
"acl",
"attr",
Expand Down Expand Up @@ -274,7 +275,7 @@ def _install(self) -> bool:
self._add_test_users()
tool_path = self.get_tool_path(use_global=True)
git = self.node.tools[Git]
git.clone(self.repo, tool_path)
git.clone(url=self.repo, cwd=tool_path, ref=self.branch)
make = self.node.tools[Make]
code_path = tool_path.joinpath("xfstests-dev")
make.make_install(code_path)
Expand Down

0 comments on commit 2478919

Please sign in to comment.